Merge pull request #710 from pangeachat/fix-env-path

fix .env file path in main.dart
This commit is contained in:
ggurdin 2024-10-07 09:45:56 -04:00 committed by GitHub
commit 2a0c8cfdd6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,7 +22,7 @@ void main() async {
// #Pangea
try {
await dotenv.load(fileName: ".env.local_choreo");
await dotenv.load(fileName: ".env");
} catch (e) {
Logs().e('Failed to load .env file', e);
}