Skip to content

Commit

Permalink
rename to isPluginConnected
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanyapotti committed May 15, 2024
1 parent 56130e3 commit 3de1058
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/base/src/hooks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export interface IBaseWeb3AuthHookContext {
}

export interface IBaseWalletServicesHookContext {
isConnected: boolean;
isPluginConnected: boolean;
showWalletConnectScanner(): Promise<void>;
showCheckout(): Promise<void>;
showWalletUI(): Promise<void>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export function WalletServicesContextProvider<T extends IBaseWeb3AuthHookContext
const value = useMemo(() => {
return {
plugin: walletServicesPlugin,
isConnected: isPluginConnected,
isPluginConnected,
showWalletConnectScanner,
showCheckout,
showWalletUI,
Expand Down

0 comments on commit 3de1058

Please sign in to comment.