Skip to content

Commit

Permalink
Comment: #69 타이머 만료 코드 주석 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoonyesol committed Aug 23, 2024
1 parent f8265b4 commit 22e0104
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/user/auth-form/LinkContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default function LinkContainer({ initialLinks }: LinkContainerProps) {
<label className="font-bold" htmlFor="link">
링크
</label>
<div className="space-y-4" id="link">
<div className="space-y-4">
{links.map((linkItem) => (
<div key={linkItem} className="flex h-25 items-center space-x-8 rounded-lg border border-input px-6 text-sm">
<div className="grow overflow-hidden">
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useEmailVerification.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default function useEmailVerification() {
return false;
};

// 타이머 만료
// 인증 코드 만료
const expireVerificationCode = () => {
setIsVerificationRequested(false);
toastError('인증 시간이 만료되었습니다. 다시 시도해 주세요.');
Expand Down

0 comments on commit 22e0104

Please sign in to comment.