Skip to content

Commit

Permalink
Merge pull request #35 from rtCamp/fix/contact-store-typo
Browse files Browse the repository at this point in the history
fix: rename customerByName to customersByName in store
  • Loading branch information
Aryan20 authored Nov 22, 2024
2 parents 65554da + 0e3f1b0 commit c0c91c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/stores/customers.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const customersStore = defineStore('customers', () => {
auto: true,
transform(customers) {
for (let customer of customers) {
customerByName[customer.name] = customer
customersByName[customer.name] = customer
}
return customers
},
Expand Down

0 comments on commit c0c91c9

Please sign in to comment.