Default fetch-more mode to auto

This commit is contained in:
2026-08-11 21:12:27 -04:00
parent af827a9a96
commit 35ad858d0d
6 changed files with 8 additions and 8 deletions

View File

@@ -102,7 +102,7 @@ export function MyShowsPage() {
// counterpart to the Feed page's row (which loads every feed). manual
// mode: Enter on the row. auto mode: reaching the bottom row fetches
// automatically (see the effect below).
const fetchMoreMode = () => app.state().preferences.fetchMoreMode ?? "manual";
const fetchMoreMode = () => app.state().preferences.fetchMoreMode ?? "auto";
const showFetchMore = () =>
depth() >= 1 &&
!!drilledShowId() &&