Skip to content
This repository was archived by the owner on Aug 2, 2025. It is now read-only.

Commit 31f4cd6

Browse files
committed
chore: get rid of week view
1 parent 7212f12 commit 31f4cd6

File tree

3 files changed

+3
-10
lines changed

3 files changed

+3
-10
lines changed

apps/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "client",
3-
"version": "1.8.1-beta",
3+
"version": "1.8.2-beta",
44
"scripts": {
55
"dev": "npm-run-all --parallel dev:*",
66
"dev:run": "FORCE_COLOR=1 vite",

apps/client/src/routes/Main/Home/Home.tsx

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import { TabList, TabPanels, TabPanel, Tabs, Flex } from "@chakra-ui/react";
2-
import { CalendarBlank, Rows, SquaresFour } from "phosphor-react";
2+
import { CalendarBlank, SquaresFour } from "phosphor-react";
33
import QuickLinks from "./QuickLinks";
44
import Countdown from "./Countdown";
55
import ViewTab from "./ViewTab";
66
import DayTimetable from "./DayTimetable";
7-
import WeekTimetable from "./WeekTimetable";
87
import CycleTimetable from "./Cycle";
98
import { useState } from "react";
109
import { ErrorBoundary } from "react-error-boundary";
@@ -20,7 +19,6 @@ export default function Home() {
2019
<Tabs variant={"unstyled"} mt={1}>
2120
<TabList>
2221
<ViewTab icon={CalendarBlank}>Day</ViewTab>
23-
<ViewTab icon={Rows}>Week</ViewTab>
2422
<ViewTab icon={SquaresFour}>Cycle</ViewTab>
2523
</TabList>
2624
<TabPanels borderTop={"2px solid"} borderColor={"gray.500"}>
@@ -29,11 +27,6 @@ export default function Home() {
2927
<DayTimetable />
3028
</ErrorBoundary>
3129
</TabPanel>
32-
<TabPanel>
33-
<ErrorBoundary fallback={<ErrorAlert />}>
34-
<WeekTimetable />
35-
</ErrorBoundary>
36-
</TabPanel>
3730
<TabPanel>
3831
<ErrorBoundary fallback={<ErrorAlert />}>
3932
<CycleTimetable />

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "timetabl",
3-
"version": "1.8.1-beta",
3+
"version": "1.8.2-beta",
44
"author": "Hamzah Ahmed",
55
"license": "MIT",
66
"bugs": {

0 commit comments

Comments
 (0)