Skip to content

Commit

Permalink
fixes for incorrect type imports
Browse files Browse the repository at this point in the history
  • Loading branch information
NielsJPeschel committed Feb 9, 2024
1 parent 6d69d7b commit deca02e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hooks/useLoadData/types/FetchData.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Promisable} from '../../types';
import {Promisable} from '../../../types';

import {UnboxApiResponse} from './UnboxApiResponse';
import {NotUndefined} from './NotUndefined';
Expand Down
2 changes: 1 addition & 1 deletion hooks/useLoadData/types/UnboxApiResponse.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {ApiResponseBase} from '../../types';
import {ApiResponseBase} from '../../../types';

export type UnboxApiResponse<F extends any[]> = {
[P in keyof F]: F[P] extends ApiResponseBase<any> ? Exclude<F[P]['result'], undefined> : F[P];
Expand Down

0 comments on commit deca02e

Please sign in to comment.