Skip to content

Commit

Permalink
Merge pull request #11 from ArtelierMaisa/fix/weight
Browse files Browse the repository at this point in the history
fix: send correct `weight` product value
  • Loading branch information
ArtelierMaisa authored Jul 29, 2024
2 parents 78ad579 + d943b76 commit 9b0cbef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/contexts/UserContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ export function UserProvider({ children }: Required<PropsWithChildren>) {
...newProduct,
material: newProduct.material || '',
size: newProduct.size || '',
weight: newProduct.size || '',
weight: newProduct.weight || '',
whatsapp,
images: imagesObject,
createdAt: new Date().getTime(),
Expand Down

0 comments on commit 9b0cbef

Please sign in to comment.