Skip to content

Commit

Permalink
fix loading status
Browse files Browse the repository at this point in the history
  • Loading branch information
SemenStruchev committed Sep 26, 2024
1 parent 6b4569a commit e05619b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DatePicker/Day.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import PropTypes from "prop-types";
import React from "react";
import { Dot } from "../Dot/Dot";

export const Day = ({ selectedDate, date, getContent, currentMonth, isLoading = true, disabled = false }) => {
export const Day = ({ selectedDate, date, getContent, currentMonth, isLoading = false, disabled = false }) => {
const isSameMonth = dayjs(currentMonth).isSame(date, "month");

if (getContent && isSameMonth) {
Expand Down

0 comments on commit e05619b

Please sign in to comment.