fix: PopCardListV2Component nullish coalescing 연산자 괄호 추가

SWC 빌더에서 ?? 와 || 혼용 시 명시적 괄호를 요구하는 문법 에러를 수정한다.
This commit is contained in:
SeongHyun Kim 2026-03-23 10:41:57 +09:00
parent 678e5fa368
commit b5e48f0b12
1 changed files with 1 additions and 1 deletions

View File

@ -441,7 +441,7 @@ export function PopCardListV2Component({
...row,
__processFlow__: updatedFlow,
[VIRTUAL_SUB_STATUS]: String(row[VIRTUAL_SUB_STATUS] ?? row.__process_status ?? matched.status),
[VIRTUAL_SUB_SEMANTIC]: String(row[VIRTUAL_SUB_SEMANTIC] ?? matched.semantic || "pending"),
[VIRTUAL_SUB_SEMANTIC]: String(row[VIRTUAL_SUB_SEMANTIC] ?? (matched.semantic || "pending")),
[VIRTUAL_SUB_PROCESS]: String(row[VIRTUAL_SUB_PROCESS] ?? matched.processName),
[VIRTUAL_SUB_SEQ]: row[VIRTUAL_SUB_SEQ] ?? matched.seqNo,
} as RowData;