Skip to content
Merged
Changes from all commits
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
8 changes: 1 addition & 7 deletions apps/web/src/features/shared/components/AuthCodeForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { BlockButton, LabelButton, TextField, toastController } from "@ject/jds"
import type { FormEventHandler } from "react";
import { useState } from "react";
import { Controller } from "react-hook-form";
import { useNavigate, useParams } from "react-router-dom";

import { PATH } from "@/constants/path";
import {
Expand Down Expand Up @@ -33,9 +32,6 @@ export function AuthCodeForm({
onVerified,
onExistingMember,
}: AuthCodeFormProps) {
const navigate = useNavigate();
const { jobFamily } = useParams<{ jobFamily: string }>();

const [hasSentCode, setHasSentCode] = useState(false);
const [emailErrorMessage, setEmailErrorMessage] = useState<string | null>(null);
const [authCode, setAuthCode] = useState("");
Expand Down Expand Up @@ -167,9 +163,7 @@ export function AuthCodeForm({
hierarchy='secondary'
suffixIcon='arrow-right-s-line'
onClick={() => {
if (jobFamily) {
void navigate(`${PATH.applyGuide}/${jobFamily}?tab=faq&faq=faq-5`);
}
window.open(`${PATH.faq}/1/apply-5`, "_blank");

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

경로에 오타가 있었네요~ 수정 감사합니다~

}}
>
인증번호를 받지 못하셨나요?
Expand Down