From 2b359d7001644fca38d0161827d23bf894180f2b Mon Sep 17 00:00:00 2001 From: cyfung1031 <44498510+cyfung1031@users.noreply.github.com> Date: Fri, 6 Feb 2026 08:58:58 +0900 Subject: [PATCH] No Redux --- .github/copilot-instructions.md | 1 - tests/test-utils.tsx | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 664f954e5..1bebf61b1 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -74,7 +74,6 @@ User scripts are compiled with sandbox context isolation: - **React 18** - Component framework with automatic runtime - **Arco Design** - UI component library (`@arco-design/web-react`) - **UnoCSS** - Atomic CSS framework for styling -- **Redux Toolkit** - State management with RTK - **Rspack** - Fast bundler (Webpack alternative) with SWC - **TypeScript** - Type-safe development diff --git a/tests/test-utils.tsx b/tests/test-utils.tsx index 72e307bc3..d35af568b 100644 --- a/tests/test-utils.tsx +++ b/tests/test-utils.tsx @@ -18,7 +18,7 @@ afterEach(() => { cleanup(); }); -// 自定义render函数,包装Redux Provider +// 自定义render函数,包装 Provider const customRender = ( ui: ReactElement, { _initialState = {}, ...renderOptions }: { _initialState?: any; store?: any } & Omit = {}