Explorar el Código

Update bookmark-folder.ts

- Update BookmarkFolderItems import
Mudana-Grune hace 3 años
padre
commit
1b38a8e385
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/app/src/stores/bookmark-folder.ts

+ 1 - 1
packages/app/src/stores/bookmark-folder.ts

@@ -3,7 +3,7 @@ import { SWRResponse } from 'swr';
 import useSWRImmutable from 'swr/immutable';
 
 import { apiv3Get } from '~/client/util/apiv3-client';
-import { BookmarkFolderItems } from '~/server/models/bookmark-folder';
+import { BookmarkFolderItems } from '~/interfaces/bookmark-info';
 
 export const useSWRxBookamrkFolderAndChild = (parentId?: Nullable<string>): SWRResponse<BookmarkFolderItems[], Error> => {
   const _parentId = parentId == null ? '' : parentId;