{title}
{description}
@@ -157,10 +157,32 @@
]
}
},
+ {
+ title: "News Feed Source",
+ description: "Choose sources of your news feed.",
+ id: 11,
+ Component: Select,
+ props: {
+ state: $settingsState.newsSource,
+ onChange: (value: string) => settingsState.newsSource = value,
+ options: [
+ { value: "australia", label: "Australia" },
+ { value: "usa", label: "USA" },
+ { value: "taiwan", label: "Taiwan" },
+ { value: "hong_kong", label: "Hong Kong" },
+ { value: "panama", label: "Panama" },
+ { value: "canada", label: "Canada" },
+ { value: "singapore", label: "Singapore" },
+ { value: "uk", label: "UK" },
+ { value: "japan", label: "Japan" },
+ { value: "netherlands", label: "Netherlands" }
+ ]
+ }
+ },
{
title: "BetterSEQTA+",
description: "Enables BetterSEQTA+ features",
- id: 11,
+ id: 12,
Component: Switch,
props: {
state: $settingsState.onoff,
@@ -181,7 +203,7 @@
settingsState.devMode = isOn} />