diff options
author | Eric Bailey <git@esb.lol> | 2024-02-19 18:18:13 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-19 18:18:13 -0600 |
commit | b52a742925cff4429885e94815d61f3f7cfb5a66 (patch) | |
tree | 49382c8b4e9758948e8c553bf9fa6e01d17df112 /src/components/Prompt.tsx | |
parent | da62a77f05258ce2b0609248cb5677c2406a4e63 (diff) | |
download | voidsky-b52a742925cff4429885e94815d61f3f7cfb5a66.tar.zst |
Improve dialogs (#2933)
* Improve dialogs * Remove comment, revert storybook * Hacky fix * Comments
Diffstat (limited to 'src/components/Prompt.tsx')
-rw-r--r-- | src/components/Prompt.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Prompt.tsx b/src/components/Prompt.tsx index 2c79d27cf..411679102 100644 --- a/src/components/Prompt.tsx +++ b/src/components/Prompt.tsx @@ -41,7 +41,7 @@ export function Outer({ <Dialog.Inner accessibilityLabelledBy={titleId} accessibilityDescribedBy={descriptionId} - style={{width: 'auto', maxWidth: 400}}> + style={[{width: 'auto', maxWidth: 400}]}> {children} </Dialog.Inner> </Context.Provider> |