diff --git a/src/pages/admin/AdminPage.tsx b/src/pages/admin/AdminPage.tsx
index ccc85001..a04174a1 100644
--- a/src/pages/admin/AdminPage.tsx
+++ b/src/pages/admin/AdminPage.tsx
@@ -3,7 +3,6 @@ import { Heading1, Paragraph } from "@/components/utils/Text";
import { SubPageLayout } from "@/pages/layouts/SubPageLayout";
import { ConfigValuesPart } from "@/pages/parts/admin/ConfigValuesPart";
import { M3U8TestPart } from "@/pages/parts/admin/M3U8TestPart";
-import { RegionSelectorPart } from "@/pages/parts/admin/RegionSelectorPart";
import { TMDBTestPart } from "@/pages/parts/admin/TMDBTestPart";
import { WorkerTestPart } from "@/pages/parts/admin/WorkerTestPart";
@@ -22,7 +21,6 @@ export function AdminPage() {
{t("fedapi.setup.tokenLabel")}
-
diff --git a/src/pages/parts/admin/RegionSelectorPart.tsx b/src/pages/parts/admin/RegionSelectorPart.tsx
deleted file mode 100644
index 58af2e30..00000000
--- a/src/pages/parts/admin/RegionSelectorPart.tsx
+++ /dev/null
@@ -1,50 +0,0 @@
-import { Dropdown } from "@/components/form/Dropdown";
-import { Box } from "@/components/layout/Box";
-import { Heading2 } from "@/components/utils/Text";
-import { Region, useRegionStore } from "@/utils/detectRegion";
-
-export function RegionSelectorPart() {
- const { region, setRegion } = useRegionStore();
-
- const regionOptions = [
- { id: "dallas", name: "Dallas, TX" },
- { id: "portland", name: "Portland, OR" },
- { id: "new-york", name: "New York, NY" },
- { id: "paris", name: "Paris, France" },
- { id: "hong-kong", name: "Hong Kong" },
- { id: "kansas", name: "Kansas City, MO" },
- { id: "sydney", name: "Sydney, Australia" },
- { id: "singapore", name: "Singapore" },
- { id: "mumbai", name: "Mumbai, India" },
- ];
-
- return (
- <>
-
- Manually select your preferred region for FED API. This will
- override automatic region detection.
-
- Use with caution. Changing the region will reset your token!
-
{t("settings.connections.febbox.tokenLabel", "Token")}
diff --git a/src/pages/parts/settings/RegionSelectorPart.tsx b/src/pages/parts/settings/RegionSelectorPart.tsx
new file mode 100644
index 00000000..24cf9470
--- /dev/null
+++ b/src/pages/parts/settings/RegionSelectorPart.tsx
@@ -0,0 +1,32 @@
+import { Dropdown } from "@/components/form/Dropdown";
+import { Region, useRegionStore } from "@/utils/detectRegion";
+
+export function RegionSelectorPart() {
+ const { region, setRegion } = useRegionStore();
+
+ const regionOptions = [
+ { id: "dallas", name: "Dallas, TX" },
+ { id: "portland", name: "Portland, OR" },
+ { id: "new-york", name: "New York, NY" },
+ { id: "paris", name: "Paris, France" },
+ { id: "hong-kong", name: "Hong Kong" },
+ { id: "kansas", name: "Kansas City, MO" },
+ { id: "sydney", name: "Sydney, Australia" },
+ { id: "singapore", name: "Singapore" },
+ { id: "mumbai", name: "Mumbai, India" },
+ ];
+
+ return (
+