Skip to content

Commit

Permalink
fix visual bug
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Nov 19, 2024
1 parent 35d970e commit b854eef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/data/material/components/dialogs/ToolpadDialogsNoSnap.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ function DeleteDialogTrigger({ name }) {
setIsDeleting(true);
await mockApiDelete();
dialogs.alert(
<p>
<React.Fragment>
Deleted project <code>{name}</code>.
</p>,
</React.Fragment>,
);
} finally {
setIsDeleting(false);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ function DeleteDialogTrigger({ name }: { name: string }) {
setIsDeleting(true);
await mockApiDelete();
dialogs.alert(
<p>
<React.Fragment>
Deleted project <code>{name}</code>.
</p>,
</React.Fragment>,
);
} finally {
setIsDeleting(false);
Expand Down

0 comments on commit b854eef

Please sign in to comment.