Skip to content

Commit

Permalink
fix: 6자 -> 8자 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
simeunseo committed Aug 23, 2024
1 parent 2e5a142 commit a3918bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function SetHostInfo({ meetingInfo, setMeetingInfo, setStep }: FunnelProps) {
value={meetingInfo.name}
setValue={hostOnChange}
resetValue={resetHost}
max={6}
max={8}
placeholder={'방장 이름'}
/>
</HostNameSection>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/loginEntrance/components/HostComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ function HostComponent({ hostInfo, setHostInfo }: HostProps) {
value={hostInfo.name}
setValue={hostOnChange}
resetValue={resetHostId}
max={6}
max={8}
placeholder={'방장 이름'}
/>
</HostNameSection>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/loginEntrance/components/MemberComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function MemberComponent({ hostInfo, setHostInfo }: HostProps) {
value={hostInfo.name}
setValue={hostOnChange}
resetValue={resetHostId}
max={6}
max={8}
placeholder={'참여자 이름'}
/>
</HostNameSection>
Expand Down

0 comments on commit a3918bf

Please sign in to comment.