Skip to content

Commit

Permalink
fix: metabar reading count
Browse files Browse the repository at this point in the history
Signed-off-by: Innei <i@innei.in>
  • Loading branch information
Innei committed Jun 2, 2024
1 parent 3a7e297 commit 13917d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/modules/shared/MetaBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const CurrentReadingCountingMetaBarItem: FC<{

const count = useCurrentRoomCount(roomCtx?.roomName || '')

if (!roomCtx || !count) return null
if (!roomCtx || count <= 1) return null

return (
<>
Expand Down

0 comments on commit 13917d8

Please sign in to comment.