diff --git a/src/Main.test.tsx b/src/Main.test.tsx
index 0cf848f2..8e512dd6 100644
--- a/src/Main.test.tsx
+++ b/src/Main.test.tsx
@@ -23,9 +23,4 @@ describe('Main', () => {
const { getByTestId } = renderWrapper();
expect(getByTestId('authz-module')).toBeInTheDocument();
});
-
- it('wraps the body in an xl container to align it with the header', () => {
- const { getByTestId } = renderWrapper();
- expect(getByTestId('authz-module').closest('.container-mw-xl')).toBeInTheDocument();
- });
});
diff --git a/src/Main.tsx b/src/Main.tsx
index 44cdeff9..a668e205 100644
--- a/src/Main.tsx
+++ b/src/Main.tsx
@@ -1,5 +1,4 @@
import { CurrentAppProvider, PageWrap, getSiteConfig, useIntl } from '@openedx/frontend-base';
-import { Container } from '@openedx/paragon';
import { Helmet } from 'react-helmet';
import { appId } from './constants';
@@ -20,9 +19,7 @@ const Main = () => {