Skip to content

Commit

Permalink
Show Chapter Titles By Default
Browse files Browse the repository at this point in the history
  • Loading branch information
rajarsheechatterjee committed Apr 28, 2024
1 parent 42570d2 commit 3cd5b40
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/hooks/persisted/useNovel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ export interface NovelSettings {
showChapterTitles?: boolean;
}

const defaultNovelSettings: NovelSettings = {};
const defaultNovelSettings: NovelSettings = {
showChapterTitles: true,
};
const defaultPageIndex = 0;

export const useTrackedNovel = (novelId: number) => {
Expand Down

0 comments on commit 3cd5b40

Please sign in to comment.