From 5e0ab960f9ee34583a6ca2b81018e1ed416402be Mon Sep 17 00:00:00 2001 From: GW_MC <72297530+GWMCwing@users.noreply.github.com> Date: Fri, 5 Dec 2025 20:43:46 +0800 Subject: [PATCH] fix: update import path for TanstackQueryApiClient to use the correct generated client --- apps/frontend/app/lib/api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/frontend/app/lib/api.ts b/apps/frontend/app/lib/api.ts index d201d9a..97e72ad 100644 --- a/apps/frontend/app/lib/api.ts +++ b/apps/frontend/app/lib/api.ts @@ -1,6 +1,6 @@ import type { AxiosInstance, AxiosResponse } from 'axios'; import { type Fetcher, type Method, createApiClient } from '../generated/api-client/api-client'; -import { TanstackQueryApiClient } from '../generated/tanstack-client'; +import { TanstackQueryApiClient } from '../generated/api-client/tanstack-client'; const API_BASE_URL: string | undefined = import.meta.env.VITE_API_BASE_URL;