Skip to content

Commit

Permalink
chore: 오탈자 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
suhwan2004 committed Nov 17, 2024
1 parent 9fc03a5 commit 2b03e2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/mocks/handlers/hide.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { http } from 'msw';

import { ICancleHideResDTO, IHideFeedResDTO } from '@/entities/hide';
import { ICancelHideResDTO, IHideFeedResDTO } from '@/entities/hide';

import { feedMockData } from '../data';
import { createHttpErrorResponse, createHttpSuccessResponse } from '../lib';
Expand Down Expand Up @@ -35,7 +35,7 @@ export const feedHandlers = [
if (cur.id === +feedId) cur.isBlinded = false;
});

return createHttpSuccessResponse<ICancleHideResDTO>({
return createHttpSuccessResponse<ICancelHideResDTO>({
isHidden: false,
});
}),
Expand Down
2 changes: 1 addition & 1 deletion src/entities/hide/model/hide.type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ export interface IHideFeedResDTO {
}

// 피드 숨기기 취소
export interface ICancleHideResDTO {
export interface ICancelHideResDTO {
isHidden: boolean;
}

0 comments on commit 2b03e2e

Please sign in to comment.