-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement application bootstrap component #4815
Conversation
setup/config/webpack.config.dev.js
Outdated
@@ -27,6 +27,7 @@ const config = { | |||
new webpack.DefinePlugin({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comment not related to this file
Question: This seems to be unrelated to hardware wallet? Shouldnt we merge this into development?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@eniola its wrong env you can have .env file in your pc for test propose check this out
https://create-react-app.dev/docs/adding-custom-environment-variables/#what-other-env-files-can-be-used
setup/config/webpack.config.dev.js
Outdated
@@ -27,6 +27,7 @@ const config = { | |||
new webpack.DefinePlugin({ | |||
PRODUCTION: JSON.stringify(false), | |||
VERSION: JSON.stringify(version), | |||
DEFAULT_NETWORK: 'devnet', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no iots wront its should be in .env
and need a prefix of REACT_APP like the REACT_APP_MSW you can find in config file
REACT_APP_ DEFAULT_NETWORK
}, [isFetched]); | ||
|
||
if (error) { | ||
// @TODO: this return should be replaced with an actual error message page |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
create a ticket if is not exist and add ticket number to todo
setup/config/webpack.config.dev.js
Outdated
@@ -27,6 +27,7 @@ const config = { | |||
new webpack.DefinePlugin({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@eniola its wrong env you can have .env file in your pc for test propose check this out
https://create-react-app.dev/docs/adding-custom-environment-variables/#what-other-env-files-can-be-used
What was the problem?
This PR resolves #4707 and #4708
How was it solved?
How was it tested?