Fix order of gain menu options (#2105)

This commit is contained in:
Kendall Garner 2023-01-22 16:08:54 +00:00 committed by Joe Stump
parent 6b84a5cc13
commit a9663d97c7
No known key found for this signature in database
GPG Key ID: 29151C3EC48A0EB9

View File

@ -16,8 +16,8 @@ export const ReplayGainToggle = (props) => {
label={translate('menu.personal.options.replaygain')}
choices={[
{ id: 'none', name: 'menu.personal.options.gain.none' },
{ id: 'track', name: 'menu.personal.options.gain.album' },
{ id: 'album', name: 'menu.personal.options.gain.track' },
{ id: 'album', name: 'menu.personal.options.gain.album' },
{ id: 'track', name: 'menu.personal.options.gain.track' },
]}
defaultValue={gainInfo.gainMode}
onChange={(event) => {