forgot await

This commit is contained in:
Tom (plebeius.eth)
2024-09-20 12:14:21 +02:00
parent 184f343e2b
commit e1faf55f12
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -233,7 +233,7 @@ const PostFormTable = ({ closeForm, postCid }: { closeForm: () => void; postCid:
const getAnonAddressForReply = useCallback(async () => {
if (anonMode && !hasCalledAnonAddressRef.current) {
hasCalledAnonAddressRef.current = true;
const existingSigner = getExistingSigner(address);
const existingSigner = await getExistingSigner(address);
if (existingSigner) {
setPublishReplyOptions({
signer: existingSigner,