Skip to content

Commit

Permalink
🐛 fix: 시간제근무허가서 생성 오류 해결 Team-inglo#127
Browse files Browse the repository at this point in the history
  • Loading branch information
naarang committed Nov 26, 2024
1 parent f3dee6b commit ec00430
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/utils/document.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ import { InsuranceInfo } from '@/constants/documents';
// 객체의 모든 프로퍼티가 공백이 아닌지 확인하는 함수
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export const isNotEmpty = (obj: Record<string, any>): boolean => {
return Object.values(obj).every((value) => {
return Object.entries(obj).every(([key, value]) => {
// null 또는 undefined 체크
if (value === null || value === undefined) {
return false;
}

// 문자열인 경우 trim()으로 공백 제거 후 길이 확인
if (typeof value === 'string') {
// 문자열이면서 phone_number가 아닌 경우 trim()으로 공백 제거 후 길이 확인
if (typeof value === 'string' && key !== 'phone_number') {
return value.trim().length > 0;
}

Expand Down

0 comments on commit ec00430

Please sign in to comment.