diff --git a/ui/app/components/ConditionForm.vue b/ui/app/components/ConditionForm.vue index 871ca279..5f5f53c1 100644 --- a/ui/app/components/ConditionForm.vue +++ b/ui/app/components/ConditionForm.vue @@ -538,7 +538,7 @@ const props = defineProps<{ const toast = useNotification(); const showImport = useStorage('showImport', false); const box = useConfirm(); -const config = useConfigStore(); +const config = useYtpConfig(); const form = reactive(normalizeCondition(props.item)); const importString = ref(''); diff --git a/ui/app/components/DLFieldForm.vue b/ui/app/components/DLFieldForm.vue index 8b99971b..fef2847e 100644 --- a/ui/app/components/DLFieldForm.vue +++ b/ui/app/components/DLFieldForm.vue @@ -260,7 +260,7 @@ const props = defineProps<{ const toast = useNotification(); const box = useConfirm(); -const config = useConfigStore(); +const config = useYtpConfig(); const fieldTypes = ['string', 'text', 'bool'] as const; const fieldTypeItems = [...fieldTypes]; diff --git a/ui/app/components/NewDownload.vue b/ui/app/components/NewDownload.vue index c93933f6..8af6845c 100644 --- a/ui/app/components/NewDownload.vue +++ b/ui/app/components/NewDownload.vue @@ -520,7 +520,7 @@ const emitter = defineEmits<{ (e: 'getInfo', url: string, preset: string | undefined, cli: string | undefined): void; (e: 'clear_form'): void; }>(); -const config = useConfigStore(); +const config = useYtpConfig(); const toast = useNotification(); const dialog = useDialog(); const { findPreset, hasPreset, selectItems, getPresetDefault } = usePresetOptions(); diff --git a/ui/app/components/NotifyDropdown.vue b/ui/app/components/NotifyDropdown.vue index 872625e3..b9da56d8 100644 --- a/ui/app/components/NotifyDropdown.vue +++ b/ui/app/components/NotifyDropdown.vue @@ -138,9 +138,10 @@