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

Commit 64b056b

Browse files
committed
fix: change feature request link to point to feedback
1 parent ec32f9c commit 64b056b

File tree

2 files changed

+35
-34
lines changed

2 files changed

+35
-34
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "timetabl-app",
3-
"version": "1.2.0-beta",
3+
"version": "1.2.1-beta",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

src/routes/Main/Calendar/Calendar.tsx

Lines changed: 34 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -9,40 +9,41 @@ import {
99
Flex,
1010
UnorderedList,
1111
ListItem,
12-
Link
12+
Link,
1313
} from "@chakra-ui/react";
14-
14+
import { Link as RouterLink } from "react-router-dom";
1515
import { Calendar as CalendarIcon } from "phosphor-react";
1616

1717
export const Calendar = () => (
18-
<Flex w={"full"} h="full" direction={"column"} align="center">
19-
<Card bg="transparent" shadow="xl">
20-
<CardHeader paddingBottom="0px" paddingTop="0px" paddingRight="0px">
21-
<Heading size="md" display={"flex"} alignItems="center" gap={2}>
22-
<Icon
23-
rounded="full"
24-
as={CalendarIcon}
25-
bg={useToken("colors", "primary.400") + "22"}
26-
boxSize={10}
27-
p={2}
28-
color="primary.400"
29-
/>
30-
Calendar <Badge>Coming soon</Badge>
31-
</Heading>
32-
</CardHeader>
33-
<CardBody>
34-
Calendar is currently in development. Please check back in a few days.
35-
Currently planned features:
36-
<UnorderedList>
37-
<ListItem>Get a bird&apos;s eye view of your timetable</ListItem>
38-
<ListItem>View your sport from Clipboard</ListItem>
39-
<ListItem>See when your Canvas assignments are due</ListItem>
40-
</UnorderedList>
41-
If you have any suggestions, <Link
42-
href="https://github.com/debater-coder/timetabl-app/issues/new?assignees=debater-coder&labels=&template=feature_request.md&title=Feature%20Request%20for%20Calendar"
43-
color={"primary.500"}
44-
isExternal>please make a feature request</Link>.
45-
</CardBody>
46-
</Card>
47-
</Flex>
48-
);
18+
<Flex w={"full"} h="full" direction={"column"} align="center">
19+
<Card bg="transparent" shadow="xl">
20+
<CardHeader paddingBottom="0px" paddingTop="0px" paddingRight="0px">
21+
<Heading size="md" display={"flex"} alignItems="center" gap={2}>
22+
<Icon
23+
rounded="full"
24+
as={CalendarIcon}
25+
bg={useToken("colors", "primary.400") + "22"}
26+
boxSize={10}
27+
p={2}
28+
color="primary.400"
29+
/>
30+
Calendar <Badge>Coming soon</Badge>
31+
</Heading>
32+
</CardHeader>
33+
<CardBody>
34+
Calendar is currently in development. Please check back in a few days.
35+
Currently planned features:
36+
<UnorderedList>
37+
<ListItem>Get a bird&apos;s eye view of your timetable</ListItem>
38+
<ListItem>View your sport from Clipboard</ListItem>
39+
<ListItem>See when your Canvas assignments are due</ListItem>
40+
</UnorderedList>
41+
If you have any suggestions,{" "}
42+
<Link as={RouterLink} to="../feedback" color={"primary.500"}>
43+
please make a feature request
44+
</Link>
45+
.
46+
</CardBody>
47+
</Card>
48+
</Flex>
49+
);

0 commit comments

Comments
 (0)