From 9f0a13830bc608c3f24aec07264adcdd67c7d1c9 Mon Sep 17 00:00:00 2001 From: Ajay Date: Thu, 23 Oct 2025 03:26:21 -0400 Subject: [PATCH] Fix import error --- src/components/options/AdvancedSkipOptionsComponent.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/options/AdvancedSkipOptionsComponent.tsx b/src/components/options/AdvancedSkipOptionsComponent.tsx index f382314f..eb7d1b25 100644 --- a/src/components/options/AdvancedSkipOptionsComponent.tsx +++ b/src/components/options/AdvancedSkipOptionsComponent.tsx @@ -1,7 +1,8 @@ import * as React from "react"; import Config from "../../config"; -import { AdvancedSkipRule, configToText, parseConfig, } from "../../utils/skipRule"; +import { configToText, parseConfig, } from "../../utils/skipRule"; +import { AdvancedSkipRule } from "../../utils/skipRule.type"; let configSaveTimeout: NodeJS.Timeout | null = null;