From 5903d7c53b3d360bbf35366ef43a417da7ae627a Mon Sep 17 00:00:00 2001 From: Stephen Zhou <38493346+hyoban@users.noreply.github.com> Date: Wed, 26 Mar 2025 23:48:54 +0800 Subject: [PATCH] chore: fix type --- packages/shared/src/bridge.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/shared/src/bridge.ts b/packages/shared/src/bridge.ts index 017fbd4a8..a2e6af40a 100644 --- a/packages/shared/src/bridge.ts +++ b/packages/shared/src/bridge.ts @@ -1,8 +1,9 @@ -import type { GeneralSettings, UISettings } from "@follow/shared/settings/interface" import type { BrowserWindow } from "electron" import { useEffect, useLayoutEffect, useRef } from "react" import type { toast } from "sonner" +import type { GeneralSettings, UISettings } from "./settings/interface" + const PREFIX = "__follow" // eslint-disable-next-line unused-imports/no-unused-vars