diff --git a/src/app/features/common-settings/cosmetics/Cosmetics.tsx b/src/app/features/common-settings/cosmetics/Cosmetics.tsx index f3a827b26e..4634685482 100644 --- a/src/app/features/common-settings/cosmetics/Cosmetics.tsx +++ b/src/app/features/common-settings/cosmetics/Cosmetics.tsx @@ -156,34 +156,44 @@ export function Cosmetics({ requestClose }: CosmeticsProps) { variant="SurfaceVariant" direction="Column" gap="400" - style={{ padding: '16px' }} > - - - /color [hex] - - Set room-specific name color. (e.g. /color #ff00ff) - - - - /font [name] - - Set room-specific name font. (e.g. /font monospace) - - - - /pronoun [pronouns] - - Set room-specific pronoun set. (e.g. /pronoun "they\them, it\its") - - - - /gcolor | /gfont | /gpronoun - - Apply colors/fonts/pronouns to the entire space. - - - + + + + + + + + + + diff --git a/src/app/features/settings/about/About.tsx b/src/app/features/settings/about/About.tsx index 1e83a947f6..15c4b65a58 100644 --- a/src/app/features/settings/about/About.tsx +++ b/src/app/features/settings/about/About.tsx @@ -67,7 +67,7 @@ export function About({ requestClose }: AboutProps) { } - /> + > + {/* FIXME: these two things below, even before my changes, don't really seem to ever appear? */} + {deregisterState.status === AsyncStatus.Error && ( + +
+ Failed to deregister devices. Please try again. +
+ )} + {deregisterState.status === AsyncStatus.Success && ( + +
+ Successfully deregistered all devices. +
+ )} +
); }