summaryrefslogtreecommitdiff
path: root/src/pages/my/invoices.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/my/invoices.jsx')
-rw-r--r--src/pages/my/invoices.jsx9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/pages/my/invoices.jsx b/src/pages/my/invoices.jsx
index fd50c3c8..12a5ff7e 100644
--- a/src/pages/my/invoices.jsx
+++ b/src/pages/my/invoices.jsx
@@ -1,10 +1,13 @@
import AppLayout from '@/core/components/layouts/AppLayout'
+import IsAuth from '@/lib/auth/components/IsAuth'
import InvoicesComponent from '@/lib/invoice/components/Invoices'
export default function Invoices() {
return (
- <AppLayout title='Invoice & Faktur Pajak'>
- <InvoicesComponent />
- </AppLayout>
+ <IsAuth>
+ <AppLayout title='Invoice & Faktur Pajak'>
+ <InvoicesComponent />
+ </AppLayout>
+ </IsAuth>
)
}