fix: correct payment method options mapping in FormEditOrder component
This commit is contained in:
parent
a9a9104711
commit
b496aa5d75
1 changed files with 1 additions and 1 deletions
|
|
@ -328,7 +328,7 @@ export const FormEditOrder = ({ prezziario, data, close }: FormProps) => {
|
|||
</SelectTrigger>
|
||||
</FormControl>
|
||||
<SelectContent id="select-paymentmethod">
|
||||
{Object.values(PAYMENT_TYPES).map((option) => (
|
||||
{PAYMENT_TYPES.map((option) => (
|
||||
<SelectItem key={option} value={option}>
|
||||
{option}
|
||||
</SelectItem>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue