diff --git a/src/features/ui/components/modals/streak-modal.tsx b/src/features/ui/components/modals/streak-modal.tsx index 805b84e8f..096a5f6ba 100644 --- a/src/features/ui/components/modals/streak-modal.tsx +++ b/src/features/ui/components/modals/streak-modal.tsx @@ -106,18 +106,18 @@ const StreakModal: React.FC = ({ onClose }) => { )} - {account.ditto?.streak?.days > 0 && ( - - - - - - - - {shortNumberFormat(account.ditto.streak.days)} - - - )} + + + + + + + + {account.ditto?.streak?.days > 0 ? + shortNumberFormat(account.ditto.streak.days) : + } + +