Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

리다이렉트 로직 제거, 조직 이름 20자 이하로 수정 #54

Merged
merged 2 commits into from
Jul 30, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
feat: 조직이름 20자 이하로 수정
  • Loading branch information
taeyun01 committed Jul 30, 2024
commit 571c5c06cde22b887813b209b501c5c5aaa649a9
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ const NewWorkSpacePage = () => {
placeholder="회사, 단체, 조직 이름 입력."
value={orgName}
onChange={(e) => setOrgName(e.target.value)}
maxLength={20}
required={true}
/>
</div>
Expand Down