diff --git a/src/data/schedule.ts b/src/data/schedule.ts
index 527d3e9f..d17ceef9 100644
--- a/src/data/schedule.ts
+++ b/src/data/schedule.ts
@@ -190,7 +190,7 @@ export const schedule: RawSchedule = {
},
{
id: 'hacking-ends',
- title: '๐ฎโ๐จ Hacking starts',
+ title: '๐ฎโ๐จ Hacking ends',
start: '05/05/2024 09:00',
description: /* markdown */ `Remember to submit a valid project, on time, on Devpost to be eligible for prizes ๐ or travel reimbursement ๐ซ`,
},
@@ -250,8 +250,8 @@ export const schedule: RawSchedule = {
icon: 'youtube',
},
title: '๐ฃ๏ธ Closing ceremony',
- start: '03/05/2024 15:30',
- end: '03/05/2024 17:30',
+ start: '05/05/2024 15:30',
+ end: '05/05/2024 17:30',
description: /* markdown */ `Want to know how the event went? Just join us on YouTube & Vรจrtex auditorium for the closing ceremony, where weโll wrap up HackUPC 2023 and the winners will be announced! ๐ฅ๐ฅ๐ฅ`,
},
{
diff --git a/src/views/Schedule.vue b/src/views/Schedule.vue
index 20c45ee1..5af3cda5 100644
--- a/src/views/Schedule.vue
+++ b/src/views/Schedule.vue
@@ -7,12 +7,12 @@ import LiveView from '@/components/LiveView.vue'
const route = useRoute()
-const currentSchedule = computed<'live' | 'basic'>(() => {
+const currentSchedule = computed<'live' | 'detailed'>(() => {
if (
route.params?.scheduleId !== 'live' &&
- route.params?.scheduleId !== 'basic'
+ route.params?.scheduleId !== 'detailed'
) {
- return 'basic'
+ return 'detailed'
}
return route.params.scheduleId
@@ -27,11 +27,11 @@ const currentSchedule = computed<'live' | 'basic'>(() => {
Basic viewDetailed view
-