Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
jonburchel committed Jul 23, 2024
1 parent 93aeaa2 commit 15fd86d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions frontend/src/pages/chat/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -745,6 +745,11 @@ const Chat = () => {

return (
<div className={styles.container} role="main">
<DefaultButton
text="Show Query Params"
onClick={() => setIsDialogOpen(true)}
styles={{ root: { margin: '10px' } }}
/>
<Dialog
hidden={!isDialogOpen}
onDismiss={() => setIsDialogOpen(false)}
Expand All @@ -769,11 +774,6 @@ const Chat = () => {
<DefaultButton onClick={() => setIsDialogOpen(false)} text="Close" />
</DialogFooter>
</Dialog>
<DefaultButton
text="Show Query Params"
onClick={() => setIsDialogOpen(true)}
styles={{ root: { margin: '10px' } }}
/>
{showAuthMessage ? (
<Stack className={styles.chatEmptyState}>
<ShieldLockRegular
Expand Down

0 comments on commit 15fd86d

Please sign in to comment.