diff --git a/TimerPage.tsx b/TimerPage.tsx index 54b9593..42c2af6 100644 --- a/TimerPage.tsx +++ b/TimerPage.tsx @@ -7,7 +7,6 @@ import {settingsRepo} from './db' import DrawerHeader from './DrawerHeader' import MassiveFab from './MassiveFab' import Settings from './settings' -import {useTheme} from './use-theme' interface TickEvent { minutes: string @@ -18,7 +17,6 @@ export default function TimerPage() { const [minutes, setMinutes] = useState('00') const [seconds, setSeconds] = useState('00') const [settings, setSettings] = useState() - const {color} = useTheme() useEffect(() => { settingsRepo.findOne({where: {}}).then(setSettings) @@ -66,7 +64,6 @@ export default function TimerPage() {