feat: default zap amount

This commit is contained in:
2023-02-24 23:03:01 +00:00
parent 8939b1dad2
commit 44b29b777d
3 changed files with 27 additions and 3 deletions

View File

@ -70,6 +70,11 @@ export interface UserPreferences {
* Default page to select on load
*/
defaultRootTab: "posts" | "conversations" | "global";
/**
* Default zap amount
*/
defaultZapAmount: number;
}
export type DbType = "indexdDb" | "redux";
@ -231,6 +236,7 @@ export const InitState = {
fileUploader: "void.cat",
imgProxyConfig: DefaultImgProxy,
defaultRootTab: "posts",
defaultZapAmount: 500,
},
} as LoginStore;