From 98576992e38eb3c91625b4d2f2382afde960abdd Mon Sep 17 00:00:00 2001 From: simoleo89 Date: Sun, 14 Jun 2026 21:43:46 +0200 Subject: [PATCH] feat(toolbar): keep rank-gated icons visible even when collapsed modtools, housekeeping and furni-editor now render outside the collapse group, so staff still see their tools when the left side is collapsed (still gated by the existing isMod/isHk checks). --- src/components/toolbar/ToolbarView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/toolbar/ToolbarView.tsx b/src/components/toolbar/ToolbarView.tsx index 29dc624..7c49cf8 100644 --- a/src/components/toolbar/ToolbarView.tsx +++ b/src/components/toolbar/ToolbarView.tsx @@ -287,6 +287,7 @@ export const ToolbarView: FC<{ isInRoom: boolean }> = props => CreateLinkEvent('soundboard/toggle') } className="tb-icon" /> } + ) } { isMod && CreateLinkEvent('mod-tools/toggle') } className="tb-icon" /> @@ -301,7 +302,6 @@ export const ToolbarView: FC<{ isInRoom: boolean }> = props => CreateLinkEvent('furni-editor/toggle') } className="tb-icon" /> } - ) }