Add TableOrders component to dashboard

This commit is contained in:
lora322 2025-09-23 20:54:39 -04:00 committed by GitHub
parent 6e3f048d97
commit 036bb14c69
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,6 +10,7 @@ import BaseIcon from '../components/BaseIcon';
import { getPageTitle } from '../config'; import { getPageTitle } from '../config';
import Link from 'next/link'; import Link from 'next/link';
import { useTranslation } from 'next-i18next'; import { useTranslation } from 'next-i18next';
import TableOrders from '../components/TableOrders';
import { hasPermission } from '../helpers/userPermissions'; import { hasPermission } from '../helpers/userPermissions';
import { fetchWidgets } from '../stores/roles/rolesSlice'; import { fetchWidgets } from '../stores/roles/rolesSlice';
@ -619,6 +620,7 @@ const Dashboard = () => {
)} )}
</div> </div>
</SectionMain> </SectionMain>
<TableOrders filterStatus="open" />
</> </>
); );
}; };