Skip to content
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

Remove useless variables #255

Merged
merged 1 commit into from
Sep 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions client/app/configs/firebaseConfig.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { API_KEY, AUTH_DOMAIN } from "@env"; // Don't worry about this env error!

Check failure on line 1 in client/app/configs/firebaseConfig.ts

View workflow job for this annotation

GitHub Actions / lint (21.x)

Unable to resolve path to module '@env'
import AsyncStorage from "@react-native-async-storage/async-storage";
import { initializeApp, getApp, getApps } from "@firebase/app";
import {
Expand All @@ -10,11 +10,7 @@

const firebaseConfig = {
apiKey: API_KEY || "Mock-Key",
authDomain: AUTH_DOMAIN,
// projectId: PROJECT_ID,
// storageBucket: STORAGE_BUCKET,
// messagingSenderId: MESSAGING_SENDER_ID,
// appId: APP_ID,
authDomain: AUTH_DOMAIN
};

let app;
Expand Down
4 changes: 0 additions & 4 deletions client/config_example.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,3 @@ LOCATION_REFRESH_RATE=3000

API_KEY = place_your_apiKey_here
AUTH_DOMAIN = place_your_authDomain_here
PROJECT_ID = place_your_projectId_here
STORAGE_BUCKET = place_your_storageBucket_here
MESSAGING_SENDER_ID = place_your_messagingSenderId_here
APP_ID = place_your_appId_here
Loading