Skip to content

Commit

Permalink
fix: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eun-hak committed May 13, 2024
1 parent 23e10e1 commit ffc1227
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/signup/PhoneCertification.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ const PhoneCertification = ({ onNext }: PhoneCertificationProps) => {
setIsRequest(true);
setBtnStatus('THIRD');
}
} catch (error: string) {
/* eslint-disable-next-line @typescript-eslint/no-explicit-any */
} catch (error: any) {
const errorResponse = error.response.data;
const errorCode = errorResponse.errorCode;
const select = signError.find((item) => item.errorCode === errorCode);
Expand Down

0 comments on commit ffc1227

Please sign in to comment.