feat: copy event json

This commit is contained in:
2023-01-21 17:00:09 +00:00
parent 0f5364a7be
commit 079b4ff9a9
3 changed files with 27 additions and 3 deletions

View File

@ -29,7 +29,12 @@ export interface UserPreferences {
/**
* Ask for confirmation when reposting notes
*/
confirmReposts: boolean
confirmReposts: boolean,
/**
* Show debugging menus to help diagnose issues
*/
showDebugMenus: boolean
}
export interface LoginStore {
@ -104,7 +109,8 @@ const InitState = {
enableReactions: true,
autoLoadMedia: true,
theme: "system",
confirmReposts: false
confirmReposts: false,
showDebugMenus: false
}
} as LoginStore;