We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeb4014 commit 255554cCopy full SHA for 255554c
common/consts.ts
@@ -18,7 +18,7 @@ export const sortSlots = (
18
period: number;
19
}[],
20
) => {
21
- const order = ["月", "火", "水", "木", "金"];
+ const order = ["mon", "tue", "wed", "thu", "fri", "sat", "sun", "other"];
22
return slots.sort((a, b) => {
23
const dayComparison = order.indexOf(a.day) - order.indexOf(b.day);
24
if (dayComparison !== 0) {
0 commit comments