Skip to content

Commit

Permalink
fix: Default book format audiobook is properly sown in settings
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusz-bak committed Feb 20, 2024
1 parent 4af0fa2 commit c1477ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ui/settings_screen/settings_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ class SettingsScreen extends StatelessWidget {
LocaleKeys.book_format_ebook.tr(),
style: const TextStyle(),
);
} else if (state == BookFormat.hardcover) {
} else if (state == BookFormat.audiobook) {
return Text(
LocaleKeys.book_format_audiobook.tr(),
style: const TextStyle(),
Expand Down

0 comments on commit c1477ac

Please # to comment.