claude/session-crx3tm #147

Merged
chrisp merged 4 commits from claude/session-crx3tm into main 2026-09-04 21:05:43 +00:00
Showing only changes of commit a7b7921b9b - Show all commits

View file

@ -57,9 +57,9 @@ const db = {
set: (data: Partial<MatchRow>) => {
const applyTo = (where: unknown) => {
const values = whereValues(where);
const row = rows.find((r) => values.includes(r.id));
if (row) Object.assign(row, data);
return row;
const target = rows.find((r) => values.includes(r.id));
if (target) Object.assign(target, data);
return target;
};
// Advancement writes through the query builder with and without .returning().
return {