Skip to content

Commit

Permalink
fix : any 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
BellYun committed Jan 1, 2025
1 parent cf78209 commit baee137
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/__test__/modal/PositionModal.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ import useFilterStore from "../../store/useFilterStore"; // 올바른 스토어

describe("PositionModal 컴포넌트 테스트", () => {
let onClose: ReturnType<typeof vi.fn>;
let setPositionsMock: any; // any 제거
let setPositionsMock: ReturnType<
typeof useFilterStore.getState
>["setPositions"];

beforeEach(() => {
onClose = vi.fn();
Expand Down

0 comments on commit baee137

Please sign in to comment.