Feat: Add model verify (#13005)

### What problem does this PR solve?

Feat: Add model verify

### Type of change

- [x] New Feature (non-breaking change which adds functionality)

---------

Co-authored-by: Liu An <asiro@qq.com>
This commit is contained in:
chanx
2026-02-05 15:53:20 +08:00
committed by GitHub
parent 90b726c988
commit 89fdb1d498
22 changed files with 1083 additions and 220 deletions

View File

@@ -77,7 +77,14 @@ if (process.env.NODE_ENV === 'development') {
},
);
}
const queryClient = new QueryClient();
const queryClient = new QueryClient({
defaultOptions: {
queries: {
refetchOnWindowFocus: false,
retry: 2,
},
},
});
type Locale = ConfigProviderProps['locale'];