diff options
| author | Party Wumpus <48649272+PartyWumpus@users.noreply.github.com> | 2023-06-15 13:53:02 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-15 05:53:02 -0700 |
| commit | e8dfe5a87df1d3155004ccf59363d4a9724300a6 (patch) | |
| tree | b3020fb9a164503586260e69a7ebc77e150affd1 /frontend | |
| parent | d0b7d1a4a694e97846e4dd9cf31faac61380e5c5 (diff) | |
| download | decky-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.tsx | 2 |
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) |
