Add server avatars. Closes #52

Add identity edit menu. Closes #51
This commit is contained in:
Paul
2021-08-07 22:42:15 +01:00
parent 97816e1feb
commit 4f1ba8942f
10 changed files with 135 additions and 8 deletions

View File

@@ -11,6 +11,7 @@ import { ChannelInfo } from "./popovers/ChannelInfo";
import { ImageViewer } from "./popovers/ImageViewer";
import { ModifyAccountModal } from "./popovers/ModifyAccount";
import { PendingRequests } from "./popovers/PendingRequests";
import { ServerIdentityModal } from "./popovers/ServerIdentityModal";
import { UserPicker } from "./popovers/UserPicker";
import { UserProfile } from "./popovers/UserProfile";
@@ -40,6 +41,8 @@ export default function Popovers() {
return <SpecialPromptModal onClose={onClose} {...screen} />;
case "special_input":
return <SpecialInputModal onClose={onClose} {...screen} />;
case "server_identity":
return <ServerIdentityModal onClose={onClose} {...screen} />;
}
return null;