Skip to content

Commit 1cf17e4

Browse files
committed
Try again
1 parent c42cfde commit 1cf17e4

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

frontend/src/pages/chat/Chat.tsx

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -744,31 +744,31 @@ const Chat = () => {
744744
}
745745

746746
return (
747-
<Dialog
748-
hidden={!isDialogOpen}
749-
onDismiss={() => setIsDialogOpen(false)}
750-
dialogContentProps={{
751-
type: DialogType.largeHeader,
752-
title: 'Query String Parameters',
753-
subText: 'The current query string parameters are:',
754-
}}
755-
modalProps={{
756-
isBlocking: false,
757-
styles: { main: { maxWidth: 450 } },
758-
}}
759-
>
760-
<div>
761-
{Array.from(queryParams.entries()).map(([key, value]) => (
762-
<p key={key}>
763-
<strong>{key}:</strong> {value}
764-
</p>
765-
))}
766-
</div>
767-
<DialogFooter>
768-
<DefaultButton onClick={() => setIsDialogOpen(false)} text="Close" />
769-
</DialogFooter>
770-
</Dialog>
771747
<div className={styles.container} role="main">
748+
<Dialog
749+
hidden={!isDialogOpen}
750+
onDismiss={() => setIsDialogOpen(false)}
751+
dialogContentProps={{
752+
type: DialogType.largeHeader,
753+
title: 'Query String Parameters',
754+
subText: 'The current query string parameters are:',
755+
}}
756+
modalProps={{
757+
isBlocking: false,
758+
styles: { main: { maxWidth: 450 } },
759+
}}
760+
>
761+
<div>
762+
{Array.from(queryParams.entries()).map(([key, value]) => (
763+
<p key={key}>
764+
<strong>{key}:</strong> {value}
765+
</p>
766+
))}
767+
</div>
768+
<DialogFooter>
769+
<DefaultButton onClick={() => setIsDialogOpen(false)} text="Close" />
770+
</DialogFooter>
771+
</Dialog>
772772
<DefaultButton
773773
text="Show Query Params"
774774
onClick={() => setIsDialogOpen(true)}

0 commit comments

Comments
 (0)