Skip to content

Commit

Permalink
fix(console): avoid lint error
Browse files Browse the repository at this point in the history
avoid lint error
  • Loading branch information
simeng-li committed Apr 18, 2024
1 parent 895c62b commit 7ff9ca8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/console/src/consts/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ export const isProduction = process.env.NODE_ENV === 'production';
export const isCloud = yes(process.env.IS_CLOUD);
export const adminEndpoint = process.env.ADMIN_ENDPOINT;

export const isDevFeaturesEnabled = false;
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
export const isDevFeaturesEnabled: boolean = false;

0 comments on commit 7ff9ca8

Please sign in to comment.