audio streaming app plyr.fm
38
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: remove duplicate auto-download toggle from playback section (#874)

The "auto-download liked" toggle was shown in both the playback and
experimental sections. Keep only the experimental one.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

authored by

nate nowack
Claude Opus 4.6
and committed by
GitHub
c411002d 9b5b124d

-15
-15
frontend/src/routes/settings/+page.svelte
··· 540 540 <span class="toggle-slider"></span> 541 541 </label> 542 542 </div> 543 - 544 - <div class="setting-row"> 545 - <div class="setting-info"> 546 - <h3>auto-download liked</h3> 547 - <p>automatically download tracks for offline playback when you like them</p> 548 - </div> 549 - <label class="toggle-switch"> 550 - <input 551 - type="checkbox" 552 - checked={autoDownloadLiked} 553 - onchange={(e) => handleAutoDownloadToggle((e.target as HTMLInputElement).checked)} 554 - /> 555 - <span class="toggle-slider"></span> 556 - </label> 557 - </div> 558 543 </div> 559 544 </section> 560 545