From 044ec9f19234464a520719e64eedc40629bca879 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 14 Sep 2023 00:41:03 -0700 Subject: [PATCH] Updated tab styling --- src/components/tab.jsx | 13 ++++++------- src/pages/index.jsx | 8 ++++++-- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/src/components/tab.jsx b/src/components/tab.jsx index 912051a3..ba5c52af 100644 --- a/src/components/tab.jsx +++ b/src/components/tab.jsx @@ -1,23 +1,22 @@ import { useContext } from "react"; import classNames from "classnames"; -import { SettingsContext } from "utils/contexts/settings"; import { TabContext } from "utils/contexts/tab"; export default function Tab({ tab }) { - const { settings } = useContext(SettingsContext); const { activeTab, setActiveTab } = useContext(TabContext); return (