Skip to content

Commit

Permalink
fix: 개발과정에서 발생한 불필요한 console 일괄 제거 (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
semnil5202 authored May 15, 2024
1 parent 662daa7 commit 0b8bb4c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/pages/Login/OauthRedirect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ const OauthRedirect = ({ serverName }: Props) => {
const searchParams = new URLSearchParams(location.search);
const code = searchParams.get('code');

console.log(code);

const getCode = useCallback(
async (code: string | null) => {
if (!code) throw new Error('OAUTH CODE ERROR');
Expand Down
2 changes: 0 additions & 2 deletions src/pages/SignUp/hooks/useCheckDuplicateNickname.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ const useCheckDuplicateNickname = ({ nickname, setFieldErrorValue }: Props) => {
const userNickname = getUserNickname();
const timerId = useRef<number | null>(null);

console.log(userNickname);

useEffect(() => {
if (nickname.length < 2 || NICKNAME_REG_EXP.test(nickname)) {
return;
Expand Down

0 comments on commit 0b8bb4c

Please sign in to comment.