Skip to content

Commit

Permalink
friendly
Browse files Browse the repository at this point in the history
  • Loading branch information
5tarlight committed Oct 29, 2021
1 parent 19d1d72 commit 45d043b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 19 deletions.
19 changes: 1 addition & 18 deletions src/stat/stat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
3 changes: 2 additions & 1 deletion src/time/times.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 45d043b

Please sign in to comment.