From 8f8e97cf5300751be80505d7a6a66e4596a36e4f Mon Sep 17 00:00:00 2001 From: Rushi Vishavadia Date: Mon, 9 Sep 2024 15:07:54 +0530 Subject: [PATCH] Intentionally fail build --- src/components/DatePicker/Day.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/DatePicker/Day.jsx b/src/components/DatePicker/Day.jsx index ed814ba7d..d10045d09 100644 --- a/src/components/DatePicker/Day.jsx +++ b/src/components/DatePicker/Day.jsx @@ -3,7 +3,7 @@ import dayjs from "dayjs"; import PropTypes from "prop-types"; import React from "react"; -export const Day = ({ selectedDate, date, getContent, currentMonth, disabled = false }) => { +export const Day = ({ selectedDate, date, getContent, currentMonth, disabled = false, foo = "asd" }) => { const isSameMonth = dayjs(currentMonth).isSame(date, "month"); if (getContent && isSameMonth) { return ;