From 6195f458001f19d20ddf82789c95c28cf3fb19af Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Tue, 13 Dec 2022 20:42:19 +0800 Subject: [PATCH] Remove unused code --- src/components/status.css | 3 --- src/pages/home.jsx | 1 - src/pages/notifications.jsx | 1 - 3 files changed, 5 deletions(-) diff --git a/src/components/status.css b/src/components/status.css index 741f8910..40034bed 100644 --- a/src/components/status.css +++ b/src/components/status.css @@ -177,9 +177,6 @@ .status .content p:last-child { margin-block-end: 0; } -.status .content p code { - color: var(--green-color); -} .status .content .invisible { display: none; } diff --git a/src/pages/home.jsx b/src/pages/home.jsx index db2423c0..56b382cb 100644 --- a/src/pages/home.jsx +++ b/src/pages/home.jsx @@ -49,7 +49,6 @@ export default ({ hidden }) => { states.home.push(...homeValues); } states.homeLastFetchTime = Date.now(); - console.log(allStatuses); return allStatuses; } diff --git a/src/pages/notifications.jsx b/src/pages/notifications.jsx index e7628f57..355e8c6c 100644 --- a/src/pages/notifications.jsx +++ b/src/pages/notifications.jsx @@ -151,7 +151,6 @@ export default () => { states.notifications.push(...notificationsValues); } states.notificationsLastFetchTime = Date.now(); - console.log(allNotifications); return allNotifications; }