Skip to content

Commit

Permalink
[#264] Fix: 구현되지 않은 authHandler를 import 함으로써 생기는 버그 수정 (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
choi-ik authored Sep 24, 2024
1 parent 6403ab0 commit dfd7df0
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/mocks/handlers/index.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
import { authHandlers } from "./authHandlers";
import { chatHandlers } from "./chatHandlers";
import { reportHandlers } from "./reportHandlers";
import { TagHandlers } from "./tagHandlers";
import { zzalHandlers } from "./zzalHandlers";

export const handler = [
...TagHandlers,
...zzalHandlers,
...reportHandlers,
...chatHandlers,
...authHandlers,
];
export const handler = [...TagHandlers, ...zzalHandlers, ...reportHandlers, ...chatHandlers];

0 comments on commit dfd7df0

Please sign in to comment.