Skip to content

Commit

Permalink
FE-27 🔨 충돌오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
JeonYumin94 committed Jul 30, 2024
1 parent 0c7471d commit f75383f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/schema/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const PostPresignedUrlResponse = z.object({
url: z.string().url(),
});

export type GetUserReponseType = z.infer<typeof GetUserReponse>;
export type GetUserResponseType = z.infer<typeof GetUserReponse>;
export type GetUserRequestType = z.infer<typeof GetUserRequest>;
export type PatchMeRequestType = z.infer<typeof PatchMeRequest>;

Expand Down
2 changes: 1 addition & 1 deletion src/types/emotion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export type EmotionTypeEN = 'MOVED' | 'HAPPY' | 'WORRIED' | 'SAD' | 'ANGRY';
export interface EmotionLog {
id: number;
userId: number;
emotion: EmotionType;
emotion: EmotionTypeEN;
createdAt: Date;
}

Expand Down

0 comments on commit f75383f

Please sign in to comment.