diff options
author | Eric Bailey <git@esb.lol> | 2025-04-24 11:46:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-24 11:46:23 -0500 |
commit | 6f44abee35437e4cd51b3f60819f1b6017e6df34 (patch) | |
tree | fa58dd1ecd6c2bdcc75aa030a69346e2460e6089 /src/components/Prompt.tsx | |
parent | e1e936068a2f8e785135ad14143bae2335b7b387 (diff) | |
download | voidsky-6f44abee35437e4cd51b3f60819f1b6017e6df34.tar.zst |
Verification UI tweaks (#8276)
* Prevent issuing verifications for users without display names * Wait for success before closing, show errors * Update icons * WIP adjust size * Adjust check size in feeds * Add back unused icon * Format
Diffstat (limited to 'src/components/Prompt.tsx')
-rw-r--r-- | src/components/Prompt.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/components/Prompt.tsx b/src/components/Prompt.tsx index ed8c15f15..f21c98ff8 100644 --- a/src/components/Prompt.tsx +++ b/src/components/Prompt.tsx @@ -52,9 +52,7 @@ export function Outer({ <Dialog.ScrollableInner accessibilityLabelledBy={titleId} accessibilityDescribedBy={descriptionId} - style={[ - gtMobile ? {width: 'auto', maxWidth: 400, minWidth: 200} : a.w_full, - ]}> + style={[gtMobile ? {width: 400} : a.w_full]}> {children} </Dialog.ScrollableInner> </Context.Provider> |