Skip to content

Commit 6511bd0

Browse files
committed
🔧 Minor Fixes
1 parent 83f4d2b commit 6511bd0

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

‎app/page.tsx‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"use client";
22
// Use { } for Named Exports (without a default)
3-
import { useState, useEffect } from "react";
43
import useBlobity from "blobity/lib/react/useBlobity";
54
import { useTheme } from "next-themes";
65
import LoadingScreen from "@/world/anim/loading/LoadingScreen";

‎world/settings/toggleAutoHideNav.tsx‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const ToggleAutoHideNav = ({
1515
checked={isAutoHideEnabled}
1616
onChange={toggleAutoHide}
1717
className="group inline-flex h-6 w-11 items-center rounded-full
18-
bg-gray-300 dark:bg-gray-600 transition data-[checked]:bg-blue-600 dark:data-[checked]:bg-yellow-200"
18+
bg-gray-400 dark:bg-gray-500 transition data-[checked]:bg-blue-600 dark:data-[checked]:bg-yellow-200"
1919
data-blobity-magnetic="false"
2020
data-blobity-radius="15"
2121
>
@@ -26,8 +26,8 @@ export const ToggleAutoHideNav = ({
2626
</Switch>
2727
<p className="p-2 m-0">
2828
{isAutoHideEnabled
29-
? "Auto-Hide Navbar Enabled"
30-
: "Auto-Hide Navbar Disabled"}
29+
? "Auto-Hide Navbar (Enabled)"
30+
: "Auto-Hide Navbar (Disabled)"}
3131
</p>
3232
</article>
3333
);

0 commit comments

Comments
 (0)