Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
fix: revert change to container (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
NawfalAhmed authored May 19, 2023
1 parent fefa583 commit d0d4ede
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/orders-and-subscriptions/OrdersAndSubscriptionsPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ const OrdersAndSubscriptionsPage = () => {

if (!isB2CSubsEnabled) {
return (
<div className="page__orders-and-subscriptions container-fluid container-mw-xl py-5">
<div className="page__orders-and-subscriptions container-fluid py-5">
<OrderHistory isB2CSubsEnabled={false} />
</div>
);
}

return (
<div className="page__orders-and-subscriptions container-fluid container-mw-xl py-4.5">
<div className="page__orders-and-subscriptions container-fluid py-4.5">
<div className="section">
<BasicAlert isVisible={hasError} />
<FormattedMessage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

exports[`<OrdersAndSubscriptions /> Renders correctly in various states renders with orders and subscriptions 1`] = `
<div
className="page__orders-and-subscriptions container-fluid container-mw-xl py-4.5"
className="page__orders-and-subscriptions container-fluid py-4.5"
>
<div
className="section"
Expand Down

0 comments on commit d0d4ede

Please sign in to comment.