fix: clean folder
This commit is contained in:
@@ -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>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user