Fix duplicate 'Wallet' in resolver name (#1281)

This commit is contained in:
ekzyis 2024-08-01 16:06:58 -05:00 committed by GitHub
parent 8000886e72
commit 9c66a5aafc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
export function generateResolverName (walletField) {
const capitalized = walletField[0].toUpperCase() + walletField.slice(1)
return `upsertWallet${capitalized}`
return `upsert${capitalized}`
}