Skip to content

Commit

Permalink
refactor : 객체 as const 붙이기
Browse files Browse the repository at this point in the history
  • Loading branch information
publdaze committed Dec 10, 2023
1 parent 31e0686 commit d58e6a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/constants/keeperTheme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const KEEPER_COLOR = {
subGray: '#575E69',
subRed: '#EF4444',
subOrange: '#FFA500',
};
} as const;

export const SIDEBAR_WIDTH = 240;
export const HEADER_HEIGHT = { xs: 56, sm: 66 };
export const HEADER_HEIGHT = { xs: 56, sm: 66 } as const;

0 comments on commit d58e6a4

Please sign in to comment.