Skip to content

Commit

Permalink
chore: nx format:write update dirty files
Browse files Browse the repository at this point in the history
  • Loading branch information
andes-it committed Oct 21, 2024
1 parent 8af8d02 commit 696f550
Showing 1 changed file with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,13 @@ const List = ({ allowedToProcess }: { allowedToProcess: boolean }) => {
endTime={list.endTime}
allowedToProcess={allowedToProcess}
/>
{(allowedToProcess && !list.active) || !allowedToProcess &&
<Signees numberOfSignatures={list.numberOfSignatures ?? 0} />
}
{(allowedToProcess && !list.active) ||
(!allowedToProcess && (
<Signees numberOfSignatures={list.numberOfSignatures ?? 0} />
))}
{allowedToProcess && (
<Box>
{!list.active &&
<PaperSignees listId={list.id} />
}
{!list.active && <PaperSignees listId={list.id} />}
<ActionReviewComplete listId={list.id} listStatus={listStatus} />
</Box>
)}
Expand Down

0 comments on commit 696f550

Please sign in to comment.