Skip to content

Commit

Permalink
Remove duplicate attibutes
Browse files Browse the repository at this point in the history
  • Loading branch information
wryonik committed Aug 1, 2024
1 parent b4a6da7 commit b8da61e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/app/src/pages/MainPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -561,13 +561,13 @@ export const MainPage: React.FC<{}> = (props) => {
{displayMessage}
</Button>
<Button
disabled={!inputWorkers["zk-email/proof-of-twitter-v2"]}
data-testid="remote-prove-button"
onClick={handleGenerateProofRemotely}
disabled={
areInputWorkersCreating ||
emailFull.length === 0 ||
isRemoteProofGenerationLoading
isRemoteProofGenerationLoading ||
!inputWorkers["zk-email/proof-of-twitter-v2"]
}
>
Generate Proof Remotely{" "}
Expand Down

0 comments on commit b8da61e

Please sign in to comment.