From 972f5569fcd48207ecea6b31d00a987ad8763340 Mon Sep 17 00:00:00 2001 From: Jacob Pihl Date: Thu, 14 Dec 2023 18:29:14 +0100 Subject: [PATCH] Added title to make tests happy --- src/stories/Library/date-calendar/DateCalendar.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/stories/Library/date-calendar/DateCalendar.tsx b/src/stories/Library/date-calendar/DateCalendar.tsx index 10cdf5693..f7d7a2bac 100644 --- a/src/stories/Library/date-calendar/DateCalendar.tsx +++ b/src/stories/Library/date-calendar/DateCalendar.tsx @@ -23,7 +23,14 @@ const DateCalendar = () => { }, []); // An input is required for flatpickr to work, but we don't want to show it in the story - return ; + return ( + + ); }; export default DateCalendar;