diff --git a/src/components/Loader.astro b/src/components/Loader.astro
index fe1864b..0bf28b8 100644
--- a/src/components/Loader.astro
+++ b/src/components/Loader.astro
@@ -2,7 +2,6 @@
import { Settings } from "@utils/settings.ts";
import { SW } from "@utils/proxy.ts";
const settings = new Settings();
- window.settings = settings;
const sw = new SW();
diff --git a/src/components/SettingsNav.astro b/src/components/SettingsNav.astro
index cb8313c..6150295 100644
--- a/src/components/SettingsNav.astro
+++ b/src/components/SettingsNav.astro
@@ -5,7 +5,7 @@ import type { SettingsProps as Props } from "@utils/types.ts";
const { active } = Astro.props;
---
-
+
Proxy
diff --git a/src/components/ui/Dropdown.astro b/src/components/ui/Dropdown.astro
index f5c0d5b..f4f01b5 100644
--- a/src/components/ui/Dropdown.astro
+++ b/src/components/ui/Dropdown.astro
@@ -1,12 +1,11 @@
---
import type { DropdownOptions } from "@utils/types";
interface Props {
- title?: string;
id: string;
options: DropdownOptions[];
}
-const { title, id, options } = Astro.props;
+const { id, options } = Astro.props;
---