Skip to content

Commit

Permalink
fix: LoginRequestTitleMap에 readonly 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
ImxYJL committed Jan 5, 2025
1 parent c4bf793 commit ac3d277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/login/LoginRequestModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as S from './styles';

type LoginRequestTitle = 'loginIntent' | 'membershipCheck';

const LoginRequestTitleMap: Record<LoginRequestTitle, string> = {
const LoginRequestTitleMap: Readonly<Record<LoginRequestTitle, string>> = {
loginIntent: '로그인하시겠어요?',
membershipCheck: '회원이신가요?',
};
Expand Down

0 comments on commit ac3d277

Please sign in to comment.