This commit is contained in:
Jamie Pine 2022-10-24 04:14:07 -07:00
parent 8933e2bf1d
commit 130443d689
2 changed files with 4 additions and 3 deletions

View file

@ -37,7 +37,7 @@ export const SettingsSidebar = () => {
</SidebarLink>
<SidebarLink to="/settings/keybindings">
<SettingsIcon component={KeyReturn} />
Keybindings
Keybinds
</SidebarLink>
<SidebarLink to="/settings/extensions">
<SettingsIcon component={PuzzlePiece} />

View file

@ -9,11 +9,12 @@ export default function AppearanceSettings() {
const [syncWithLibrary, setSyncWithLibrary] = useState(true);
return (
<SettingsContainer>
<SettingsHeader title="Keybindings" description="Manage client keybindings" />
{/* I don't care what you think the "right" way to write "keybinds" is, I simply refuse to refer to it as "keybindings" */}
<SettingsHeader title="Keybinds" description="Manage client keybinds" />
<InputContainer
mini
title="Sync with Library"
description="If enabled your keybindings will be synced with library, otherwise they will apply only to this client."
description="If enabled your keybinds will be synced with library, otherwise they will apply only to this client."
>
<Switch
checked={syncWithLibrary}