File tree 1 file changed +7
-8
lines changed
1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import isToday from "dayjs/plugin/isToday";
5
5
import classNames from "@calcom/lib/classNames" ;
6
6
import { daysInMonth , yyyymmdd } from "@calcom/lib/date-fns" ;
7
7
import { weekdayNames } from "@calcom/lib/weekday" ;
8
- import { SkeletonContainer , SkeletonText } from "@calcom/ui/skeleton" ;
8
+ import { SkeletonText } from "@calcom/ui/skeleton" ;
9
9
10
10
dayjs . extend ( isToday ) ;
11
11
@@ -88,13 +88,12 @@ const Days = ({
88
88
{ day === null ? (
89
89
< div key = { `e-${ idx } ` } />
90
90
) : props . isLoading ? (
91
- < SkeletonContainer >
92
- < button
93
- className = "absolute top-0 left-0 right-0 bottom-0 mx-auto w-full rounded-sm border-transparent bg-gray-50 text-gray-400 opacity-50 dark:bg-gray-900 dark:text-gray-400"
94
- key = { `e-${ idx } ` } >
95
- { day . date ( ) }
96
- </ button >
97
- </ SkeletonContainer >
91
+ < button
92
+ className = "absolute top-0 left-0 right-0 bottom-0 mx-auto flex w-full items-center justify-center rounded-sm border-transparent bg-gray-50 text-center text-gray-400 opacity-50 dark:bg-gray-900 dark:text-gray-400"
93
+ key = { `e-${ idx } ` }
94
+ disabled >
95
+ < SkeletonText width = "5" height = "4" />
96
+ </ button >
98
97
) : (
99
98
< DayComponent
100
99
date = { day }
You can’t perform that action at this time.
0 commit comments