Skip to content

Commit

Permalink
fix: remove unused env
Browse files Browse the repository at this point in the history
  • Loading branch information
adit-bala committed Dec 4, 2024
1 parent 0eb3d4f commit 0f026b9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions apps/datapuller/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ const env = (name: string): string => {

export interface Config {
log: Logger<unknown>;
isDev: boolean;
mongoDB: {
uri: string;
};
Expand All @@ -38,7 +37,6 @@ export function loadConfig(): Config {

return {
log,
isDev: env("NODE_ENV") === "development",
mongoDB: {
uri: env("MONGODB_URI"),
},
Expand Down

0 comments on commit 0f026b9

Please sign in to comment.