Skip to content

Commit

Permalink
update fetch time
Browse files Browse the repository at this point in the history
  • Loading branch information
duanyytop committed Dec 21, 2023
1 parent f07dc31 commit 27f760d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/EvmAA.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const EvmAA = () => {
setProvider(await getAAProvider(signer));
};
init();
}, [address, webApp]);
}, [address, webApp]);

const onCreate = async () => {
setCreateLoading(true);
Expand Down
6 changes: 3 additions & 3 deletions src/evm-aa/signer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class JoySigner implements SmartAccountSigner {
}
clearInterval(interval);
});
}, 500);
}, 1000);
} catch (error) {
console.log(error);
}
Expand All @@ -73,7 +73,7 @@ export class JoySigner implements SmartAccountSigner {
}
clearInterval(interval);
});
}, 500);
}, 1000);
} catch (error) {
console.error(error);
}
Expand All @@ -100,7 +100,7 @@ export class JoySigner implements SmartAccountSigner {
}
clearInterval(interval);
});
}, 500);
}, 1000);
} catch (error) {
console.error(error);
}
Expand Down

0 comments on commit 27f760d

Please sign in to comment.