Skip to content

Commit

Permalink
Update bridge.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
heisenberg-2077 committed Jan 17, 2025
1 parent f3c33b2 commit 25084a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/background/service/keyring/bridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ export const getKeyringBridge = async (type: string) => {
};

export const hasBridge = async (type: string) => {
return !!getKeyringBridge(type);
return !!(await getKeyringBridge(type));
};

0 comments on commit 25084a8

Please sign in to comment.