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>
|
</SelectTrigger>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<SelectContent id="select-paymentmethod">
|
<SelectContent id="select-paymentmethod">
|
||||||
{Object.values(PAYMENT_TYPES).map((option) => (
|
{PAYMENT_TYPES.map((option) => (
|
||||||
<SelectItem key={option} value={option}>
|
<SelectItem key={option} value={option}>
|
||||||
{option}
|
{option}
|
||||||
</SelectItem>
|
</SelectItem>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue