Skip to content

Commit 1c526ea

Browse files
committed
fix(native): comment out debug logout button in EmailStep and adjust layout in IdentityStep for better alignment
1 parent 97e5778 commit 1c526ea

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

apps/native/src/features/student/onboarding/screens/steps/EmailStep.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ const EmailStep = ({ navigation }: OnboardingScreenProps<'Email'>) => {
6767
placeholder='pointer111@example.com'
6868
errorMessage={error ?? undefined}
6969
/>
70-
<Button title='[DEBUG] LOGOUT' onPress={() => {
70+
{/* <Button title='[DEBUG] LOGOUT' onPress={() => {
7171
useAuthStore.getState().signOut();
72-
}} />
72+
}} /> */}
7373
</OnboardingLayout>
7474
);
7575
};

apps/native/src/features/student/onboarding/screens/steps/IdentityStep.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ const IdentityStep = ({ navigation }: OnboardingScreenProps<'Identity'>) => {
140140
onChangeText={(text) => updateField('name', text)}
141141
errorMessage={errors.name}
142142
/>
143-
<View className='flex-row items-end gap-[10px]'>
143+
<View className='flex-row items-start gap-[10px]'>
144144
<OnboardingInput
145145
label='휴대폰 번호'
146146
placeholder='01012345678'
@@ -156,7 +156,7 @@ const IdentityStep = ({ navigation }: OnboardingScreenProps<'Identity'>) => {
156156
<AnimatedPressable
157157
onPress={timeLeft > 0 ? undefined : handleResend}
158158
disabled={timeLeft > 0}
159-
className='h-[48px] w-[100px] items-center justify-center rounded-[8px] bg-primary-500'>
159+
className='h-[48px] w-[100px] mt-[45px] items-center justify-center rounded-[8px] bg-primary-500'>
160160
<Text className='text-16m text-white'>
161161
{timeLeft > 0 ? formatTime(timeLeft) : isSent ? '재전송' : '인증 요청'}
162162
</Text>

0 commit comments

Comments
 (0)