From 45d043b5f3320e6363342df4a69043f6ed7e4e92 Mon Sep 17 00:00:00 2001 From: 5tarlight Date: Fri, 29 Oct 2021 17:39:40 +0900 Subject: [PATCH] friendly --- src/stat/stat.ts | 19 +------------------ src/time/times.ts | 3 ++- 2 files changed, 3 insertions(+), 19 deletions(-) diff --git a/src/stat/stat.ts b/src/stat/stat.ts index e064b04..93da1f8 100644 --- a/src/stat/stat.ts +++ b/src/stat/stat.ts @@ -7,24 +7,7 @@ interface Stat { } } -const storedStat: Stat = { - [Subject.COMMON_KOREAN]: { - count: 3, - value: 4.5, - }, - [Subject.COMMON_MATH]: { - count: 5, - value: 3.6, - }, - [Subject.COMMON_KOREAN]: { - count: 6, - value: 2.6, - }, - [Subject.COMMON_SCIENCE]: { - count: 5, - value: 4.8, - }, -} +const storedStat: Stat = {} export const updateStat = (key: string, value: number) => { if (storedStat[key]) { diff --git a/src/time/times.ts b/src/time/times.ts index 01e0f51..556220d 100644 --- a/src/time/times.ts +++ b/src/time/times.ts @@ -130,7 +130,8 @@ export const getTodayTime = (table: TimeTable) => { } export const getZoomLink = (subject: string, type: number = 0) => { - const zoom = 'https://zoom.us/j/' + const zoom = + 'https://us05web.zoom.us/j/9733198448?pwd=cXh3V2tsTllmZW44RTk0bDNDZWRhQT09' // TODO : Real Link return zoom }