feat: option to hide alt indicator closes #1410

This commit is contained in:
Evan Boehs 2023-02-03 12:12:48 -05:00 committed by patak
parent 87496e01af
commit 4a74b16d24
4 changed files with 12 additions and 1 deletions

View file

@ -8,6 +8,7 @@ export type OldFontSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl'
export type ColorMode = 'light' | 'dark' | 'system'
export interface PreferencesSettings {
hideAltIndicatorOnPosts: boolean
hideBoostCount: boolean
hideReplyCount: boolean
hideFavoriteCount: boolean
@ -65,6 +66,7 @@ export function getDefaultUserSettings(locales: string[]): UserSettings {
}
export const DEFAULT__PREFERENCES_SETTINGS: PreferencesSettings = {
hideAltIndicatorOnPosts: false,
hideBoostCount: false,
hideReplyCount: false,
hideFavoriteCount: false,