summaryrefslogtreecommitdiff
path: root/src/core/components/elements/Navbar/NavbarDesktop.jsx
diff options
context:
space:
mode:
authorit-fixcomart <it@fixcomart.co.id>2025-05-31 08:55:43 +0700
committerit-fixcomart <it@fixcomart.co.id>2025-05-31 08:55:43 +0700
commit0d28dc8ff5fb8c5399e356ed6ecae4fce2019ca6 (patch)
tree51c25a7c508b30e974551c69680a10a76470c147 /src/core/components/elements/Navbar/NavbarDesktop.jsx
parent62d2edfa5ae62cd8faa2d0322ddfd5dfa6ad2d2e (diff)
<hafid> fix repeat-order
Diffstat (limited to 'src/core/components/elements/Navbar/NavbarDesktop.jsx')
-rw-r--r--src/core/components/elements/Navbar/NavbarDesktop.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/components/elements/Navbar/NavbarDesktop.jsx b/src/core/components/elements/Navbar/NavbarDesktop.jsx
index 03d7fa0c..db4fcbb8 100644
--- a/src/core/components/elements/Navbar/NavbarDesktop.jsx
+++ b/src/core/components/elements/Navbar/NavbarDesktop.jsx
@@ -51,7 +51,7 @@ const NavbarDesktop = () => {
const { transactions } = useTransactions({ query });
const data = transactions?.data?.saleOrders.filter(
- (transaction) => transaction.status === 'draft'
+ (transaction) => transaction.status === 'waiting'
);
const [showPopup, setShowPopup] = useState(false);