Skip to content

Commit 8304ee3

Browse files
committed
Update static data fetch path in Dexie storage
1 parent 7abba55 commit 8304ee3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/web/storage/dexie.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export async function dxInitDatabases(): Promise<void> {
6666
}
6767

6868
async function fetchStaticData(type: string): Promise<any> {
69-
return await fetchApi<any>(`/static/data/${type}`);
69+
return await fetchApi<any>(`/static/${type}`);
7070
}
7171

7272
async function storeData(data: any[], db: EntityTable<any, "id">): Promise<void> {

0 commit comments

Comments
 (0)