diff --git a/test/type/mutate.ts b/test/type/mutate.ts index 020621cbf..08b6c18c6 100644 --- a/test/type/mutate.ts +++ b/test/type/mutate.ts @@ -61,12 +61,12 @@ export function useMutatorTypes() { const { mutate } = useSWR('') mutate(async () => '1') + mutate(async () => '1', { populateCache: false }) // @ts-expect-error mutate(async () => 1) - - // FIXME: this should work. - // mutate(async () => 1, { populateCache: false }) + // @ts-expect-error + mutate(async () => 1, { populateCache: false }) } export function useConfigMutate() {