summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-06-24 13:58:09 -0300
committerSebastian <sebasjm@gmail.com>2021-06-24 13:59:20 -0300
commitaccec6d8dd48b2645918a837c904df7474b43f7a (patch)
treee85ee571d5f9249e2410571ee59b987e15890af5 /packages
parent17c5aede3d0f1edcbb0029f4ebf2b9134e1cfdc3 (diff)
downloadmerchant-backoffice-accec6d8dd48b2645918a837c904df7474b43f7a.tar.gz
merchant-backoffice-accec6d8dd48b2645918a837c904df7474b43f7a.tar.bz2
merchant-backoffice-accec6d8dd48b2645918a837c904df7474b43f7a.zip
fix mixed up fields
Diffstat (limited to 'packages')
-rw-r--r--packages/frontend/src/paths/instance/orders/list/index.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/paths/instance/orders/list/index.tsx b/packages/frontend/src/paths/instance/orders/list/index.tsx
index a4e8b15..47e143f 100644
--- a/packages/frontend/src/paths/instance/orders/list/index.tsx
+++ b/packages/frontend/src/paths/instance/orders/list/index.tsx
@@ -100,9 +100,9 @@ export default function ({ onUnauthorized, onLoadError, onCreate, onSelect, onNo
onSearchOrderById={testIfOrderExistAndSelect}
onSelectDate={setNewDate}
onShowAll={() => setFilter({})}
- onShowNotWired={() => setFilter({ paid: 'yes' })}
- onShowPaid={() => setFilter({ refunded: 'yes' })}
- onShowRefunded={() => setFilter({ wired: 'no' })}
+ onShowPaid={() => setFilter({ paid: 'yes' })}
+ onShowRefunded={() => setFilter({ refunded: 'yes' })}
+ onShowNotWired={() => setFilter({ wired: 'no' })}
/>