Skip to content

Commit

Permalink
Try to fix the 'Listen' vs 'Preview' -selection
Browse files Browse the repository at this point in the history
  • Loading branch information
gadgetmies committed Aug 15, 2024
1 parent 524ce09 commit b5e4773
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/front/src/Preview.js
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ class Preview extends Component {
type="radio"
id="sample_select_state-preview"
name="sample-select-state"
defaultChecked={!this.state.preferFullTracks}
checked={!this.state.preferFullTracks}
/>
<label
htmlFor="sample_select_state-preview"
Expand Down Expand Up @@ -629,7 +629,7 @@ class Preview extends Component {
type="radio"
id="sample_select_state-full_track"
name="sample-select-state"
defaultChecked={this.state.preferFullTracks}
checked={this.state.preferFullTracks}
/>
<label
htmlFor="sample_select_state-full_track"
Expand Down

0 comments on commit b5e4773

Please sign in to comment.