Skip to content

Commit

Permalink
fix revoking issue (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdi-torabiv authored Sep 1, 2024
1 parent 3ed3b06 commit b23ed43
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/pages/Identifiers/Identifiers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ export default function Identifiers() {
attestations
);
setUserIdentifiers(resolvedIdentifiers);
} else {
setUserIdentifiers((prev) =>
prev.map((identifier) => ({ ...identifier, verified: false }))
);
}
}, [attestations]);

Expand Down

0 comments on commit b23ed43

Please sign in to comment.