From 1ded95d964ca0d8eb0e569a9083c8dade29ed167 Mon Sep 17 00:00:00 2001 From: lqzh <9134671+lqzhgood@users.noreply.github.com> Date: Tue, 4 Aug 2026 19:04:41 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix:=20=E5=AF=BC=E5=85=A5?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.tsx | 2 +- src/context/{ConfigContext.tsx => ConfigProvider.tsx} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/context/{ConfigContext.tsx => ConfigProvider.tsx} (100%) diff --git a/src/App.tsx b/src/App.tsx index 11870fa..876de34 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,5 +1,5 @@ import { useState } from 'react'; -import { ConfigProvider } from './context/ConfigContext'; +import { ConfigProvider } from './context/ConfigProvider'; import { Header } from './components/Header'; import { Wizard } from './components/Wizard/Wizard'; import { ExpertPanel } from './components/Expert/ExpertPanel'; diff --git a/src/context/ConfigContext.tsx b/src/context/ConfigProvider.tsx similarity index 100% rename from src/context/ConfigContext.tsx rename to src/context/ConfigProvider.tsx