Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
danjm committed Dec 9, 2024
1 parent e1c3f7d commit 82d2650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/scripts/lib/Stores/ExtensionStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export class ExtensionStore extends BaseStore {

async isFirstTimeInstall(): Promise<boolean> {
const result = await this.#get();
return !!isEmpty(result);
return Boolean(isEmpty(result));
}

cleanUpMostRecentRetrievedState() {
Expand Down

0 comments on commit 82d2650

Please sign in to comment.