Skip to content

Commit cce5aa7

Browse files
committed
fix: fixed phone number country code issue
1 parent eb061d9 commit cce5aa7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

frontend/screens/auth/PhoneScreen.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ export default function PhoneScreen() {
99

1010
const handleContinue = async () => {
1111
if (!phone) return;
12-
const fullPhoneNumber = `+91${phone}`;
12+
const fullPhoneNumber = `+91${phone}`;
1313
const res = await sendOtp(fullPhoneNumber);
1414

1515
if (res.success) {
1616
router.push({
1717
pathname: '/(auth)/otp',
18-
params: { phone:fullPhoneNumber },
18+
params: { phone: fullPhoneNumber },
1919
});
2020
}
2121
};

0 commit comments

Comments
 (0)