Skip to content

Commit

Permalink
fix: 쓰지 않는 imports 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
toothlessdev committed Jun 12, 2024
1 parent 8561ca4 commit 0ac0ce9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
4 changes: 0 additions & 4 deletions src/services/groups/groups.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ import { toast } from "react-toastify";

import { api } from "@/config/axios";

import { OK } from "@/utils/responseStatus";

import { ExceptionHandler } from "../__common__/exceptions";
import { IJoinGroupResponse } from "../receipt/receipt.types";
import {
ICreateGroupRequest,
Expand Down Expand Up @@ -52,7 +49,6 @@ export const groupsService = {

joinGroup: async (groupId: number, role: ROLE = ROLE.MEMBER) => {
const response = await api.post<IJoinGroupResponse>(`/groups/${groupId}/members?role=${role}`);
ExceptionHandler(response.status);
return response.data;
},

Expand Down
2 changes: 0 additions & 2 deletions src/services/member/member.types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { BaseResponse } from "../__common__/types";

export interface IReadProfileResponse {
code: number;
message: string;
Expand Down

0 comments on commit 0ac0ce9

Please sign in to comment.