Skip to content

Commit

Permalink
Fix modal bling (#4372)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrzejewsky authored Oct 25, 2023
1 parent 6b91eef commit be2a9b6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/fifty-peas-cheer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"saleor-dashboard": patch
---

Fix form blink in customer edition for orders
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const OrderCustomerAddressesEditDialog: React.FC<
OrderCustomerAddressesEditDialogProps
> = props => {
const {
open,
open: defaultOpen,
variant,
loading,
confirmButtonState,
Expand All @@ -94,6 +94,8 @@ const OrderCustomerAddressesEditDialog: React.FC<
orderBillingAddress,
} = props;

const open = !loading && defaultOpen;

const classes = useStyles(props);
const intl = useIntl();

Expand Down

0 comments on commit be2a9b6

Please sign in to comment.