feat: show latest

This commit is contained in:
2023-01-21 16:09:35 +00:00
parent abeb2f5a6c
commit d66f9ab18d
13 changed files with 145 additions and 47 deletions

View File

@ -31,10 +31,15 @@ export interface UserPreferences {
*/
confirmReposts: boolean,
/**
* Automatically show the latests notes
*/
autoShowLatest: boolean,
/**
* Show debugging menus to help diagnose issues
*/
showDebugMenus: boolean
showDebugMenus: boolean
}
export interface LoginStore {
@ -110,7 +115,8 @@ const InitState = {
autoLoadMedia: true,
theme: "system",
confirmReposts: false,
showDebugMenus: false
showDebugMenus: false,
autoShowLatest: false
}
} as LoginStore;