complete merging conflict and remove logs
This commit is contained in:
@@ -1,7 +1,15 @@
|
||||
import "react-toastify/dist/ReactToastify.css";
|
||||
import HeaderWithLogo from "@/components/layouts/dashboard/headerWithLogo";
|
||||
import HeaderWithSidebar from "@/components/layouts/dashboard/headerWithSidebar";
|
||||
import { Box, Stack } from "@mui/material";
|
||||
|
||||
const Layout = ({ children }) => {
|
||||
return <>{children}</>;
|
||||
return (
|
||||
<Stack>
|
||||
<HeaderWithLogo />
|
||||
<Box>
|
||||
<HeaderWithSidebar>{children}</HeaderWithSidebar>
|
||||
</Box>
|
||||
</Stack>
|
||||
);
|
||||
};
|
||||
|
||||
export default Layout;
|
||||
export default Layout;
|
||||
@@ -7,10 +7,6 @@ import ClearIcon from "@mui/icons-material/Clear";
|
||||
import moment from "jalali-moment";
|
||||
|
||||
function MuiDatePicker({ value, setFieldValue, name, minDate, maxDate, helperText, placeholder, error }) {
|
||||
// console.log("error", error);
|
||||
//
|
||||
// console.log("helperText", helperText)
|
||||
|
||||
return (
|
||||
<Box sx={{ display: "flex", flexDirection: "column", my: 1 }}>
|
||||
<LocalizationProvider
|
||||
|
||||
Reference in New Issue
Block a user