Skip to content

Commit

Permalink
refactor : 백틱이 사용되는 부분 as const 선언
Browse files Browse the repository at this point in the history
  • Loading branch information
mun-kyeong committed Dec 11, 2023
1 parent 9772c16 commit 396f7b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/constants/apiResponseMessage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const MEMBER_CARD = {
success: {},
error: {
noSubmissionsLeft: '남은 제출 횟수가 없습니다.',
invalidAttendanceWithCount: (min: number) => `출석코드가 틀렸습니다. (남은 제출횟수 ${min}회)`,
invalidAttendanceWithCount: (min: number) => `출석코드가 틀렸습니다. (남은 제출횟수 ${min}회)` as const,
},
} as const;

Expand Down

0 comments on commit 396f7b0

Please sign in to comment.