Skip to content
This repository has been archived by the owner on Jun 15, 2022. It is now read-only.

Commit

Permalink
refactor: restore correct logic of isUnfinishedFeaturesEnabled func…
Browse files Browse the repository at this point in the history
…tion (#592)
  • Loading branch information
vardan-arm committed Apr 18, 2022
1 parent 361517e commit 7b9509c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/lib/utils.ts
Expand Up @@ -37,9 +37,6 @@ export function isSameDay(dateA: Date, dateB: Date) {
);
}

// eslint-disable-next-line @typescript-eslint/no-unused-vars
export function isUnfinishedFeaturesEnabled(env: TEnvironment): boolean {
// TODO: restore the commented part, remove eslint-ignore-comment
// return env === 'dev' || __DEV__;
return true;
return env === 'dev' || __DEV__;
}

0 comments on commit 7b9509c

Please sign in to comment.