From 1dcf608d1cf24ea25b6696896b1e58486182f760 Mon Sep 17 00:00:00 2001 From: sasszz Date: Tue, 25 Feb 2025 21:41:53 -0800 Subject: [PATCH] Div to Box --- client/src/pages/CheckInForm.jsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/client/src/pages/CheckInForm.jsx b/client/src/pages/CheckInForm.jsx index 4d80a61eb..6b143a4b6 100644 --- a/client/src/pages/CheckInForm.jsx +++ b/client/src/pages/CheckInForm.jsx @@ -4,6 +4,7 @@ import NewUserForm from './../components/presentational/newUserForm'; import ReturnUserForm from './../components/presentational/returnUserForm'; import { REACT_APP_CUSTOM_REQUEST_HEADER as headerToSend } from '../utils/globalSettings'; import { format } from 'date-fns'; +import { Box } from '@mui/material'; import '../sass/CheckIn.scss'; @@ -440,7 +441,7 @@ const CheckInForm = (props) => { }, []); return ( -
+ {props.location.pathname === '/newProfile' && ( { checkInNewUser={checkInNewUser} /> )} -
+ ); };