Skip to content

Commit

Permalink
fix: stats for nerds on mweb (#3365)
Browse files Browse the repository at this point in the history
  • Loading branch information
KaustubhKumar05 authored Nov 11, 2024
1 parent bdca62e commit 8e76a44
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,9 @@ export const MwebOptions = ({
</Sheet.Root>
<SettingsModal open={openSettingsSheet} onOpenChange={setOpenSettingsSheet} screenType={screenType} />

{openSettingsSheet && <StatsForNerds open={openStatsForNerdsSheet} onOpenChange={setOpenStatsForNerdsSheet} />}
{openStatsForNerdsSheet && (
<StatsForNerds open={openStatsForNerdsSheet} onOpenChange={setOpenStatsForNerdsSheet} />
)}

{openModals.has(MODALS.MUTE_ALL) && (
<MuteAllModal onOpenChange={(value: boolean) => updateState(MODALS.MUTE_ALL, value)} isMobile />
Expand Down

0 comments on commit 8e76a44

Please sign in to comment.