Skip to content

Commit

Permalink
fix: 임시 저장 데이터 변환 시 falsy 값을 체크하지 않고 null 과 undefined만 처리하도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
WonJuneKim committed Dec 2, 2024
1 parent 47ef25e commit da0c335
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ const BalanceGameCreationPage = () => {
({ name, description: optionDescription, fileId, optionType }) => ({
name,
description: optionDescription,
fileId: fileId || null,
fileId: fileId ?? null,
optionType,
}),
),
Expand Down

0 comments on commit da0c335

Please sign in to comment.