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)`);