Fix: "Modify Account" did not have access to client

This commit is contained in:
Paul
2021-06-26 10:34:48 +01:00
parent 41470e2cd5
commit 8a16724892
5 changed files with 5 additions and 5 deletions

View File

@@ -15,7 +15,6 @@ export type Screen =
| { id: "signed_out" }
| { id: "error"; error: string }
| { id: "clipboard"; text: string }
| { id: "modify_account"; field: "username" | "email" | "password" }
| { id: "_prompt"; question: Children; content?: Children; actions: Action[] }
| ({ id: "special_prompt" } & (
{ type: "leave_group", target: Channels.GroupChannel } |
@@ -49,6 +48,7 @@ export type Screen =
// Pop-overs
| { id: "image_viewer"; attachment?: Attachment; embed?: EmbedImage; }
| { id: "modify_account"; field: "username" | "email" | "password" }
| { id: "profile"; user_id: string }
| { id: "channel_info"; channel_id: string }
| {