Skip to content

Commit

Permalink
fix(service-portal): signature collection paper signees tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
albinagu committed Sep 23, 2024
1 parent 957b688 commit 0e886f1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export const PaperSignees = ({
}}
error={nationalIdTypo ? ' ' : undefined}
loading={loading || loadingCanSign}
icon={canSign ? 'checkmark' : undefined}
icon={name && canSign ? 'checkmark' : undefined}
/>
</GridColumn>
<GridColumn span={['5/12', '4/12']}>
Expand Down Expand Up @@ -156,7 +156,7 @@ export const PaperSignees = ({
<Button
variant="ghost"
size="small"
disabled={!canSign}
disabled={!canSign || !page}
onClick={() => upload()}
loading={uploadingPaperSignature}
>
Expand Down

0 comments on commit 0e886f1

Please sign in to comment.