feat: setting to hide the item page header session button

This commit is contained in:
Fredrik Burmester
2026-01-03 17:56:31 +01:00
parent 090e0cb170
commit 9cd55cf544
4 changed files with 31 additions and 8 deletions

View File

@@ -67,6 +67,16 @@ export const AppearanceSettings: React.FC = () => {
title={t("home.settings.other.hide_libraries")}
showArrow
/>
<ListItem
title={t("home.settings.appearance.hide_remote_session_button")}
>
<Switch
value={settings.hideRemoteSessionButton}
onValueChange={(value) =>
updateSettings({ hideRemoteSessionButton: value })
}
/>
</ListItem>
</ListGroup>
</DisabledSetting>
);