Skip to content

Commit

Permalink
fix: func name
Browse files Browse the repository at this point in the history
  • Loading branch information
robhyrk committed Apr 8, 2024
1 parent cdf1fce commit b7aa4ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/hooks/useWeb3Wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const useWeb3Wallet = () => {
}
};

const onBoardUser = async () => {
const onboardUser = async () => {
if (!web3auth) {
return;
}
Expand Down Expand Up @@ -93,7 +93,7 @@ const useWeb3Wallet = () => {
);
if (web3authProvider) {
await getKeypair(web3authProvider);
await onBoardUser();
await onboardUser();
}
} catch (e) {
notificationStore.pushNotification(
Expand Down

0 comments on commit b7aa4ee

Please sign in to comment.