-
Notifications
You must be signed in to change notification settings - Fork 5
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
fix: NAMESPACE and APIKEY set in the .env file #23
base: trunk
Are you sure you want to change the base?
Conversation
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.
Make sure not to commit .DS_Store files, please add an entry for it in .gitignore
lib/main.dart
Outdated
@@ -24,22 +24,25 @@ import 'services/services.dart'; | |||
import 'utils/utils.dart'; | |||
import 'widgets/widgets.dart'; | |||
|
|||
final AtSignLogger _logger = AtSignLogger(AtEnv.appNamespace); | |||
AtSignLogger _logger = AtSignLogger(AtEnv.appNamespace); |
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.
This is going to cause the same issue, since AtEnv.appNamespace is still being called before AtEnv.load(). Instead of passing AtEnv.appNamespace, pass a String.
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.
fixed
lib/main.dart
Outdated
|
||
Future<void> main() async { | ||
WidgetsFlutterBinding.ensureInitialized(); | ||
await AtEnv.load(); |
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.
This is already called on line 39, no need to call it again.
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.
Fixed
assets/.DS_Store as well please |
… screen is loaded
…irst snackbars is displayed
…ntact screen respectively
chore: pane workflow updated with comment
- What I did
This PR closes Set app namespace and api_key #21
- How I did it
- How to verify it
- Description for the changelog
NAMESPACE and API_KEY set for the dude app