From 870ac935a40cdb054f8c96383ba13d49bc0e1695 Mon Sep 17 00:00:00 2001 From: faissaloux Date: Thu, 24 Oct 2024 14:30:42 +0100 Subject: [PATCH 1/2] fix datepicker height --- src/components/Datepicker.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Datepicker.tsx b/src/components/Datepicker.tsx index d494a22..0831c29 100644 --- a/src/components/Datepicker.tsx +++ b/src/components/Datepicker.tsx @@ -371,7 +371,7 @@ const Datepicker = (props: DatepickerType) => { ]); const containerClassNameOverload = useMemo(() => { - const defaultContainerClassName = "relative w-full text-gray-700"; + const defaultContainerClassName = "relative w-full h-full text-gray-700"; return typeof containerClassName === "function" ? containerClassName(defaultContainerClassName) : typeof containerClassName === "string" && containerClassName !== "" From 261af101095a7ee316fdabbbc8c4eac9239e9b52 Mon Sep 17 00:00:00 2001 From: faissaloux Date: Thu, 24 Oct 2024 14:30:52 +0100 Subject: [PATCH 2/2] fix typo --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b58a905..df8b71b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -65,7 +65,7 @@ npm run dev ## Before you make a Pull Request -We recommend to run these scripts in sequence before you make your commit message amd open a Pull +We recommend to run these scripts in sequence before you make your commit message and open a Pull Request **Let's clean the code first**