fix: clean folder

This commit is contained in:
ferdiansyah783
2025-08-07 03:53:40 +07:00
parent 5f24ec7899
commit a72a64215a
208 changed files with 174 additions and 29968 deletions
@@ -6,9 +6,6 @@ import ProjectListTable from './ProjectListTable'
import UserActivityTimeLine from './UserActivityTimeline'
import InvoiceListTable from './InvoiceListTable'
// Data Imports
import { getInvoiceData } from '@/app/server/actions'
/**
* ! If you need data using an API call, uncomment the below API code, update the `process.env.API_URL` variable in the
* ! `.env` file found at root of your project and also update the API endpoints like `/apps/invoice` in below example.
@@ -27,8 +24,6 @@ import { getInvoiceData } from '@/app/server/actions'
} */
const OverViewTab = async () => {
// Vars
const invoiceData = await getInvoiceData()
return (
<Grid container spacing={6}>
@@ -39,7 +34,7 @@ const OverViewTab = async () => {
<UserActivityTimeLine />
</Grid>
<Grid size={{ xs: 12 }}>
<InvoiceListTable invoiceData={invoiceData} />
<InvoiceListTable invoiceData={[]} />
</Grid>
</Grid>
)