Skip to content

Commit

Permalink
chore: build type 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
presentKey committed Jan 27, 2024
1 parent 64e5458 commit bf75767
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/contexts/OduckApiContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ interface API {
reviewApi: ReviewApi;
}

// eslint-disable-next-line @typescript-eslint/no-explicit-any
export const OduckApiContext = createContext<API | null | any>(null);
export const OduckApiContext = createContext<API | null>(null);

/** @desc: api */
const authApi = new AuthApi();
Expand Down

0 comments on commit bf75767

Please sign in to comment.