From 7e855e46578b3354105edefe63585c2390c52913 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 18 Apr 2026 02:24:32 +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 cea76c7..45121b7 100644 --- a/src/routes/settings.import.tsx +++ b/src/routes/settings.import.tsx @@ -681,7 +681,7 @@ function ImportPage() { if (cfg.postInsert) cfg.postInsert(inserted_rows, ctx); - const summary = { total: rawRows.length, inserted, skipped, errors }; + const summary = { total: rawRows.length, inserted, skipped, errors, skipReasons }; setResults((r) => ({ ...r, [cfg.key]: summary })); if (errors.length === 0) toast.success(`${cfg.label}: ${inserted} imported`); else toast.error(`${cfg.label}: ${errors.length} batch error(s)`);