Removed debugger;

This commit is contained in:
Joao Ramos
2024-03-11 17:04:10 +00:00
parent 37c3c6f7f4
commit e2d5f6ac9d
2 changed files with 3 additions and 2 deletions

View File

@@ -35,7 +35,6 @@ import Select from "react-select";
import {USER_TYPE_LABELS} from "@/resources/user";
export const getServerSideProps = withIronSessionSsr(({req, res}) => {
debugger;
const user = req.session.user;
const envVariables: {[key: string]: string} = {};
@@ -65,7 +64,6 @@ interface Props {
}
export default function Home(props: Props) {
const { envVariables} = props;
debugger;
const [showDiagnostics, setShowDiagnostics] = useState(false);
const [showDemographicInput, setShowDemographicInput] = useState(false);
const [selectedScreen, setSelectedScreen] = useState<Type>("admin");