feat: show latest
This commit is contained in:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user