fix: [vite] warning: The "??" operator here will always return the left operand

environments/review-render-zap-kv0kyl/deployments/4693
P. Reis 3 months ago
parent b772415e67
commit a4e74fdcb7

@ -810,7 +810,7 @@ const StatusActionBar: React.FC<IStatusActionBar> = ({
active={status.zapped}
text={withLabels ? intl.formatMessage(messages.zap) : undefined}
theme={statusActionButtonTheme}
count={status?.zaps_amount / 1000 ?? 0}
count={status?.zaps_amount ? status.zaps_amount / 1000 : 0}
/>
)}

Loading…
Cancel
Save