diff --git a/comps/custom/Datepicker/components/Calendar/Days.tsx b/comps/custom/Datepicker/components/Calendar/Days.tsx index 850691a..0c4e233 100755 --- a/comps/custom/Datepicker/components/Calendar/Days.tsx +++ b/comps/custom/Datepicker/components/Calendar/Days.tsx @@ -212,10 +212,10 @@ const Days: React.FC = ({ !activeDateData(day).active ? hoverClassByDay(day) : activeDateData(day).className, - isDateDisabled(day, type) && "c-line-through" + isDateDisabled(day, type) && "c-text-gray-400 c-cursor-not-allowed" ); } - return cn(baseClass, isDateDisabled(day, type) && "c-line-through", "c-text-gray-400"); + return cn(baseClass, isDateDisabled(day, type) && "c-cursor-not-allowed", "c-text-gray-400"); }, [activeDateData, hoverClassByDay, isDateDisabled] ); diff --git a/comps/form/field/type/TypeInput.tsx b/comps/form/field/type/TypeInput.tsx index ce64d63..8af13de 100755 --- a/comps/form/field/type/TypeInput.tsx +++ b/comps/form/field/type/TypeInput.tsx @@ -173,7 +173,6 @@ export const FieldTypeInput: FC<{ case "rich-text": return ; case "date": - console.log(field.min_date instanceof Date) return (