Skip to content

Commit

Permalink
Remove unused Firebase configuration settings from the environment.
Browse files Browse the repository at this point in the history
  • Loading branch information
apognu committed Jan 28, 2025
1 parent 4fe892c commit bdeba64
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions packages/app-builder/src/utils/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ const PublicEnvVarsSchema = z.object({
FIREBASE_API_KEY: z.string(),
FIREBASE_APP_ID: z.string().optional(),
FIREBASE_AUTH_DOMAIN: z.string().optional(),
FIREBASE_MESSAGING_SENDER_ID: z.string().optional(),
FIREBASE_PROJECT_ID: z.string(),
FIREBASE_STORAGE_BUCKET: z.string().optional(),

SENTRY_DSN: z.string().optional(),
SENTRY_ENVIRONMENT: z.string().optional(),
Expand Down Expand Up @@ -152,8 +150,6 @@ function parseFirebaseConfigFromEnv(): FirebaseConfig {
apiKey: getEnv('FIREBASE_API_KEY'),
authDomain: getEnv('FIREBASE_AUTH_DOMAIN'),
projectId: getEnv('FIREBASE_PROJECT_ID'),
storageBucket: getEnv('FIREBASE_STORAGE_BUCKET'),
messagingSenderId: getEnv('FIREBASE_MESSAGING_SENDER_ID'),
appId: getEnv('FIREBASE_APP_ID'),
};

Expand Down

0 comments on commit bdeba64

Please # to comment.