Skip to content

Commit

Permalink
oups
Browse files Browse the repository at this point in the history
  • Loading branch information
solarpush committed Nov 9, 2023
1 parent 2276152 commit 920dee5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="icon" type="image/svg+xml" href=https://solarpush.github.io/spaced-memo/vite.svg />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Spaced Mémo</title>
<script type="module" crossorigin src="https://solarpush.github.io/spaced-memo/assets/index-b09084f5.js"></script>
<script type="module" crossorigin src="https://solarpush.github.io/spaced-memo/assets/index-e3c339aa.js"></script>
<link rel="stylesheet" href="https://solarpush.github.io/spaced-memo/assets/index-20ca1b7b.css">
</head>
<body>
Expand Down
7 changes: 6 additions & 1 deletion src/components/dialog/CustomDialog.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,12 @@ const CustomDialog = ({ data, visible, actions }) => {

return (
<>
<Dialog header={data?.title} visible={visible} footer={footerContent}>
<Dialog
header={data?.title}
visible={visible}
footer={footerContent}
style={{ width: "70vw" }}
>
<p> Réponse : {data?.response}</p>
</Dialog>
</>
Expand Down

0 comments on commit 920dee5

Please sign in to comment.