Skip to content

Commit

Permalink
style: fix typo in currency variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
pacholoamit committed May 9, 2024
1 parent eee5e7b commit f5cf21c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shared/environment-data-sources/dispense.ts
Expand Up @@ -25,7 +25,7 @@ const dispenseDataSource = ({ transactionEvent }: Partial<EnvironmentEvents>) =>
category: item_category?.toString() || "N/A",
unitPrice: parseFloat(price || 0),
quantity: parseInt(quantity || 1),
currencys: "USD",
currency: "USD",
} as TransactionCartItem;
}),
});
Expand Down

0 comments on commit f5cf21c

Please sign in to comment.