chore(web): remove unused props (#17141)

This commit is contained in:
Ben McCann 2025-03-27 15:12:14 -07:00 committed by GitHub
parent 84c35e35d6
commit 411772123f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 4 additions and 21 deletions

View file

@ -11,15 +11,10 @@
import { mdiEyeOutline } from '@mdi/js';
import { t } from 'svelte-i18n';
import { fade } from 'svelte/transition';
import type { SettingsResetEvent, SettingsSaveEvent } from '../admin-settings';
interface Props {
savedConfig: SystemConfigDto;
defaultConfig: SystemConfigDto;
config: SystemConfigDto;
disabled?: boolean;
onReset: SettingsResetEvent;
onSave: SettingsSaveEvent;
}
let { savedConfig, config = $bindable() }: Props = $props();