fix: use client ID for UAT client seed upsert #181

Closed
groombook-engineer[bot] wants to merge 2 commits from flea/uat-test-clients into main
Showing only changes of commit ec9ec11f72 - Show all commits
+1 -1
View File
@@ -417,7 +417,7 @@ async function seedUatClients(db: ReturnType<typeof drizzle>) {
address: null,
})
.onConflictDoUpdate({
target: schema.clients.email,
target: schema.clients.id,
set: { name: uat.name },
});