rename defaultPage to defaultRootTab and make posts default

This commit is contained in:
Jack Chakany
2023-02-16 20:27:46 -05:00
parent 4092ab90e0
commit e42834857b
4 changed files with 8 additions and 7 deletions

View File

@ -69,7 +69,7 @@ export interface UserPreferences {
/**
* Default page to select on load
*/
defaultPage: "posts" | "conversations" | "global";
defaultRootTab: "posts" | "conversations" | "global";
}
export type DbType = "indexdDb" | "redux";
@ -230,7 +230,7 @@ export const InitState = {
autoShowLatest: false,
fileUploader: "void.cat",
imgProxyConfig: DefaultImgProxy,
defaultPage: "posts",
defaultRootTab: "posts",
},
} as LoginStore;