fix(#56): Address PR comments

This commit is contained in:
Josh Creek
2026-01-10 12:47:27 +00:00
parent b30be24fd5
commit 070604fb89
2 changed files with 9 additions and 1 deletions
@@ -93,7 +93,7 @@ class CatchRecordRepository {
const { data: result, error } = await this.supabase
.from('catch_records')
.upsert(dbRows, {
onConflict: 'userId,pokedexId,pokedexEntryId'
onConflict: '"userId","pokedexId","pokedexEntryId"'
})
.select();