fix: useSigitProfiles dep, map item keys warnining, sign button styles, placeholder, optional button label #160
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "fix-collection-21-8"
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?
@ -42,3 +44,3 @@
</div>
<Button variant="contained" fullWidth onClick={handleDownload}>
Download Files
{downloadLabel ? downloadLabel : 'Download Files'}
You can probably use the
??
operator. ShouldDownload Files
be a constant?||
(logical OR) should be used instead of??
(Nullish Coalescing).With
??
if downloadLabel is blank string it will return blank but with||
we will get default valueDownload Files