-
Notifications
You must be signed in to change notification settings - Fork 0
fix - 라우팅 구조 개선 및 UI 업데이트 #12
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,7 +6,6 @@ import { | |
| Modal, | ||
| Platform, | ||
| Pressable, | ||
| Switch, | ||
| Text, | ||
| TextInput, | ||
| View, | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -20,7 +20,6 @@ interface Props { | |||||||
| const genderOptions: { val: Gender; label: string }[] = [ | ||||||||
| { val: 'male', label: '남성' }, | ||||||||
| { val: 'female', label: '여성' }, | ||||||||
|
||||||||
| { val: 'female', label: '여성' }, | |
| { val: 'female', label: '여성' }, | |
| { val: 'other', label: '기타' }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's an unnecessary wrapper View element that doesn't add any styling or functionality. The SafeAreaView could directly contain the inner View with the rounded-2xl styling, removing one level of nesting and simplifying the component structure.