File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1
1
"use client" ;
2
2
// Use { } for Named Exports (without a default)
3
- import { useState , useEffect } from "react" ;
4
3
import useBlobity from "blobity/lib/react/useBlobity" ;
5
4
import { useTheme } from "next-themes" ;
6
5
import LoadingScreen from "@/world/anim/loading/LoadingScreen" ;
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export const ToggleAutoHideNav = ({
15
15
checked = { isAutoHideEnabled }
16
16
onChange = { toggleAutoHide }
17
17
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"
19
19
data-blobity-magnetic = "false"
20
20
data-blobity-radius = "15"
21
21
>
@@ -26,8 +26,8 @@ export const ToggleAutoHideNav = ({
26
26
</ Switch >
27
27
< p className = "p-2 m-0" >
28
28
{ isAutoHideEnabled
29
- ? "Auto-Hide Navbar Enabled"
30
- : "Auto-Hide Navbar Disabled" }
29
+ ? "Auto-Hide Navbar ( Enabled) "
30
+ : "Auto-Hide Navbar ( Disabled) " }
31
31
</ p >
32
32
</ article >
33
33
) ;
You can’t perform that action at this time.
0 commit comments