feat: Sign Directly From the Marking Screen fix: Marking inputs glitches, losing values #272
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "issue-173"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Closes #173
@ -46,2 +49,2 @@
{downloadLabel || 'Download Files'}
</Button>
{!downloadLabel && (
Do we need the
downloadLabel
at all? Especially as a condition here, it's a bit confusing.@ -48,0 +66,4 @@
<MenuItem
onClick={() => {
popupState.close
handleEncryptedExport && handleEncryptedExport()
Would it be safer to check for
typeof handleEncryptedExport === "function"
?@ -803,4 +698,1 @@
return signerIndex === lastSignerIndex
}
const handleExport = async () => {
I believe every export (both types and both sign and verify) should include
exportSignature
, @b correct me if I'm wrong.correct