diff --git a/frontend/app/src/domains/customer/views/CustomersList.tsx b/frontend/app/src/domains/customer/views/CustomersList.tsx index 19ba5ad..938e6d1 100644 --- a/frontend/app/src/domains/customer/views/CustomersList.tsx +++ b/frontend/app/src/domains/customer/views/CustomersList.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { Typography } from "@mui/material" +import { Box, Typography } from "@mui/material" import { DataGrid, GridRowsProp, GridColDef, GridToolbar } from '@mui/x-data-grid'; import { ApiBuilder } from '../../../api/ApiBuilder.ts'; @@ -27,7 +27,7 @@ export default function CustomersList() { { field: 'email', headerName: 'Email', flex: 1, disableColumnMenu: true }, ] - return (<> + return ( Clients - + ) }