Skip to content

Commit

Permalink
chore: 글자수 제한 줄임
Browse files Browse the repository at this point in the history
  • Loading branch information
Dahyeeee committed Aug 17, 2023
1 parent 858d4f0 commit 3ee9446
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions frontend/src/constants/ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ export const EXPENSE_CATEGORY_INFORMATION_SKELETON_LENGTH = 6;

export const EXPENSE_LIST_SKELETON_LENGTH = 5;

export const TRIP_TITLE_MAX_LENGTH = 15;
export const TRIP_TITLE_MAX_LENGTH = 14;

export const TRIP_DESCRIPTION_MAX_LENGTH = 125;
export const TRIP_DESCRIPTION_MAX_LENGTH = 124;

export const DAYLOG_TITLE_MAX_LENGTH = 25;
export const DAYLOG_TITLE_MAX_LENGTH = 24;

export const TRIP_ITEM_TITLE_MAX_LENGTH = 20;

export const TRIP_ITEM_MEMO_MAX_LENGTH = 255;
export const TRIP_ITEM_MEMO_MAX_LENGTH = 254;

export const NICKNAME_MAX_LENGTH = 15;
export const NICKNAME_MAX_LENGTH = 14;

export const MOBILE_MEDIA_QUERY_SIZE = '(max-width: 600px)';

Expand Down

0 comments on commit 3ee9446

Please sign in to comment.