summaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
authorParty Wumpus <48649272+PartyWumpus@users.noreply.github.com>2023-06-15 13:53:02 +0100
committerGitHub <noreply@github.com>2023-06-15 05:53:02 -0700
commite8dfe5a87df1d3155004ccf59363d4a9724300a6 (patch)
treeb3020fb9a164503586260e69a7ebc77e150affd1 /frontend
parentd0b7d1a4a694e97846e4dd9cf31faac61380e5c5 (diff)
downloaddecky-loader-e8dfe5a87df1d3155004ccf59363d4a9724300a6.tar.gz
decky-loader-e8dfe5a87df1d3155004ccf59363d4a9724300a6.zip
When decky is uncertain of branch, set the setting to match the guess (#480)v2.10.0
* If branch setting is missing, set it using the 'guess' from backend * Make the frontend default to stable branch like the backend
Diffstat (limited to 'frontend')
-rw-r--r--frontend/src/components/settings/pages/general/BranchSelect.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/settings/pages/general/BranchSelect.tsx b/frontend/src/components/settings/pages/general/BranchSelect.tsx
index d966ff62..9b304f3a 100644
--- a/frontend/src/components/settings/pages/general/BranchSelect.tsx
+++ b/frontend/src/components/settings/pages/general/BranchSelect.tsx
@@ -21,7 +21,7 @@ const BranchSelect: FunctionComponent<{}> = () => {
t('BranchSelect.update_channel.prerelease'),
t('BranchSelect.update_channel.testing'),
];
- const [selectedBranch, setSelectedBranch] = useSetting<UpdateBranch>('branch', UpdateBranch.Prerelease);
+ const [selectedBranch, setSelectedBranch] = useSetting<UpdateBranch>('branch', UpdateBranch.Stable);
return (
// Returns numerical values from 0 to 2 (with current branch setup as of 8/28/22)