Remove unused code

This commit is contained in:
Lim Chee Aun 2022-12-13 20:42:19 +08:00
parent 9d78e67381
commit 6195f45800
3 changed files with 0 additions and 5 deletions

View file

@ -177,9 +177,6 @@
.status .content p:last-child { .status .content p:last-child {
margin-block-end: 0; margin-block-end: 0;
} }
.status .content p code {
color: var(--green-color);
}
.status .content .invisible { .status .content .invisible {
display: none; display: none;
} }

View file

@ -49,7 +49,6 @@ export default ({ hidden }) => {
states.home.push(...homeValues); states.home.push(...homeValues);
} }
states.homeLastFetchTime = Date.now(); states.homeLastFetchTime = Date.now();
console.log(allStatuses);
return allStatuses; return allStatuses;
} }

View file

@ -151,7 +151,6 @@ export default () => {
states.notifications.push(...notificationsValues); states.notifications.push(...notificationsValues);
} }
states.notificationsLastFetchTime = Date.now(); states.notificationsLastFetchTime = Date.now();
console.log(allNotifications);
return allNotifications; return allNotifications;
} }