Skip to content

Commit

Permalink
fix(client): enum -> const enum으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
SEOKKAMONI committed May 2, 2024
1 parent 0b91c60 commit a07814f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/client/src/types/coffeechat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export type CoffeechatType = 'RECEIVE' | 'SEND';

export type CoffeechatState = 'ACCEPT' | 'PENDING' | 'REJECT';

export enum CoffeechatStateEnum {
export const enum CoffeechatStateEnum {
'PENDING' = '대기',
'REJECT' = '거절',
'ACCEPT' = '수락',
Expand Down

0 comments on commit a07814f

Please sign in to comment.