We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f60880b + 7ff3947 commit c540926Copy full SHA for c540926
apps/farminglog/src/pages/auth/components/StepStart.tsx
@@ -15,7 +15,7 @@ export default function StepStart() {
15
// 인앱 브라우저일 경우 외부 브라우저로 강제 리디렉션
16
const redirectToExternalBrowser = (provider: 'KAKAO' | 'GOOGLE') => {
17
const origin = window.location.origin; // 현재 환경(dev/prod) 자동 반영
18
- const loginUrl = `${origin}/login?type=${provider}`;
+ const loginUrl = `${origin}/?type=${provider}`;
19
20
if (isKakaoInApp()) {
21
if (isAndroid()) {
0 commit comments