From df383e3d243edde74cdf17e506789437421c15b4 Mon Sep 17 00:00:00 2001 From: hiro Date: Wed, 13 Dec 2023 01:19:35 +0700 Subject: [PATCH] chore: remove ModelSettingParams import which is unused --- web/hooks/useActiveModel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/hooks/useActiveModel.ts b/web/hooks/useActiveModel.ts index 15084278c..dc9e6e33f 100644 --- a/web/hooks/useActiveModel.ts +++ b/web/hooks/useActiveModel.ts @@ -1,6 +1,6 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ import { EventName, events } from '@janhq/core' -import { Model, ModelSettingParams } from '@janhq/core' +import { Model } from '@janhq/core' import { atom, useAtom } from 'jotai' import { toaster } from '@/containers/Toast'