This commit is contained in:
Hugh Nimmo-Smith
2024-12-11 10:30:45 +00:00
parent 5ead61d406
commit c860be73f6

View File

@@ -27,7 +27,7 @@ import {
import { widget } from "../widget"; import { widget } from "../widget";
import { import {
useSetting, useSetting,
developerSettingsTab as developerSettingsTabSetting, developerSettingsTab,
backgroundBlur as backgroundBlurSetting, backgroundBlur as backgroundBlurSetting,
soundEffectVolumeSetting, soundEffectVolumeSetting,
} from "./settings"; } from "./settings";
@@ -102,7 +102,7 @@ export const SettingsModal: FC<Props> = ({
const [soundVolume, setSoundVolume] = useSetting(soundEffectVolumeSetting); const [soundVolume, setSoundVolume] = useSetting(soundEffectVolumeSetting);
const [soundVolumeRaw, setSoundVolumeRaw] = useState(soundVolume); const [soundVolumeRaw, setSoundVolumeRaw] = useState(soundVolume);
const [showDeveloperSettingsTab] = useSetting(developerSettingsTabSetting); const [showDeveloperSettingsTab] = useSetting(developerSettingsTab);
const audioTab: Tab<SettingsTab> = { const audioTab: Tab<SettingsTab> = {
key: "audio", key: "audio",