A personal media tracker built on the AT Protocol opnshelf.xyz
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: fix tsc

+3 -3
+3 -3
apps/web/src/components/ui/calendar.tsx
··· 95 95 )} 96 96 captionLayout={captionLayout} 97 97 formatters={{ 98 - formatMonthDropdown: (date) => 98 + formatMonthDropdown: (date: Date) => 99 99 date.toLocaleString("default", { month: "short" }), 100 - formatWeekdayShort: (date) => 101 - date.toLocaleString("default", { weekday: "narrow" }), 100 + formatWeekdayName: (weekday: Date) => 101 + weekday.toLocaleString("default", { weekday: "narrow" }), 102 102 ...formatters, 103 103 }} 104 104 classNames={{