From d79f610a3cdfbf5ea03b9202ddcbd8ce74d22a49 Mon Sep 17 00:00:00 2001 From: Alberto Defendi <1369-ahl-berto@users.noreply.gitlab.inf.unibz.it> Date: Sun, 6 Jun 2021 08:11:01 +0200 Subject: [PATCH] Include reservation dialog. --- src/components/Dashboard/ReservationPage/ReservationDialog.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/Dashboard/ReservationPage/ReservationDialog.tsx b/src/components/Dashboard/ReservationPage/ReservationDialog.tsx index ecc04ae..7f8a1f5 100644 --- a/src/components/Dashboard/ReservationPage/ReservationDialog.tsx +++ b/src/components/Dashboard/ReservationPage/ReservationDialog.tsx @@ -11,6 +11,7 @@ import { useReservations } from 'hooks/useReservations'; import { ReservationProps } from 'components/Dashboard/ReservationPage/Reservation/ReservationProps'; import { SubmitHandler, useForm } from 'react-hook-form'; import { InputField } from 'components/Auth/InputField/InputField'; +import { SeniorSearch } from './Reservation/SeniorSearch'; type ReservationDialogProps = { handleClose: () => void; @@ -45,6 +46,7 @@ export const ReservationDialog: FC<ReservationDialogProps> = ({ Write here below the details of your next reservation </DialogContentText> + <SeniorSearch /> <InputField name="name" label="Name Reservation" -- GitLab