Skip to content

Commit c3acdcc

Browse files
committed
fix: RoomHeader: Fix icon direction of occupants list toggle
1 parent 1fa5955 commit c3acdcc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/fluux/src/components/RoomHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ export function RoomHeader({
413413
>
414414
<Users className="w-4 h-4" />
415415
<span className="text-sm font-medium">{uniqueOccupantCount}</span>
416-
<ChevronRight className={`w-4 h-4 transition-transform ${showOccupants ? 'rotate-180' : ''}`} />
416+
<ChevronRight className={`w-4 h-4 transition-transform ${showOccupants ? '' : 'rotate-180'}`} />
417417
</button>
418418
</Tooltip>
419419

0 commit comments

Comments
 (0)