From 18df56887d7f6824fd233dbb083b2a36aa7c7292 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sun, 19 Apr 2026 00:27:09 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/routes/settings.import.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/settings.import.tsx b/src/routes/settings.import.tsx index 51629a1..c6938c8 100644 --- a/src/routes/settings.import.tsx +++ b/src/routes/settings.import.tsx @@ -761,7 +761,7 @@ function ImportPage() { ); const toUpdate = withConflict .filter((r) => existingByExternalId.has(String(r.external_id))) - .map((r) => ({ ...r, id: existingByExternalId.get(String(r.external_id)) })); + .map((r) => ({ ...r, id: existingByExternalId.get(String(r.external_id))! })); const toInsert = withConflict.filter((r) => !existingByExternalId.has(String(r.external_id))); if (toUpdate.length > 0) {