생체인증 팝업 및 알람 라우팅 개선

- 홈페이지: 생체인증이 이미 등록된 경우 등록 팝업이 표시되지 않도록 finally 블록 제거
- 알람 라우팅: /support/qna/list 경로 추가 및 /home 경로 정확도 개선

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jay Sheen
2025-11-14 17:21:59 +09:00
parent ff65807d40
commit 6721ed15ff
2 changed files with 4 additions and 5 deletions

View File

@@ -91,12 +91,8 @@ export const HomePage = () => {
}
}).catch((e) => {
console.log('catch', e);
}).finally(() => {
setAuthRegisterOn(true);
}).catch((e: any) => {
if(e.response?.data?.error?.message){
snackBar(e.response?.data?.error?.message);
return;
}
});
};