From 72adccf42d83e0954abe8d28ed71ab345a934e89 Mon Sep 17 00:00:00 2001 From: Hiroshi Ogawa Date: Fri, 21 Jun 2024 10:24:38 +0900 Subject: [PATCH] chore: more any --- test/core/__mocks__/zustand.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/core/__mocks__/zustand.ts b/test/core/__mocks__/zustand.ts index 3e79bb10ae99..6bfe4ce3bf86 100644 --- a/test/core/__mocks__/zustand.ts +++ b/test/core/__mocks__/zustand.ts @@ -2,7 +2,7 @@ import actualCreate from 'zustand' import { vi } from 'vitest' // when creating a store, we get its initial state, create a reset function and add it in the set -const create = vi.fn((createState: any) => { +const create = vi.fn((createState) => { const store = actualCreate(createState) return store })