|
@@ -4,7 +4,7 @@ import {Alert} from 'sentry/components/alert';
|
|
|
import {Button} from 'sentry/components/button';
|
|
|
import ErrorBoundary from 'sentry/components/errorBoundary';
|
|
|
import Footer from 'sentry/components/footer';
|
|
|
-import {Body, Main} from 'sentry/components/layouts/thirds';
|
|
|
+import * as Layout from 'sentry/components/layouts/thirds';
|
|
|
import {t, tct} from 'sentry/locale';
|
|
|
import AlertStore from 'sentry/stores/alertStore';
|
|
|
import {Organization} from 'sentry/types';
|
|
@@ -18,8 +18,8 @@ type Props = {
|
|
|
|
|
|
function DeletionInProgress({organization}: Props) {
|
|
|
return (
|
|
|
- <Body>
|
|
|
- <Main>
|
|
|
+ <Layout.Body>
|
|
|
+ <Layout.Main>
|
|
|
<Alert type="warning" showIcon>
|
|
|
{tct(
|
|
|
'The [organization] organization is currently in the process of being deleted from Sentry.',
|
|
@@ -28,8 +28,8 @@ function DeletionInProgress({organization}: Props) {
|
|
|
}
|
|
|
)}
|
|
|
</Alert>
|
|
|
- </Main>
|
|
|
- </Body>
|
|
|
+ </Layout.Main>
|
|
|
+ </Layout.Body>
|
|
|
);
|
|
|
}
|
|
|
|
|
@@ -57,8 +57,8 @@ function DeletionPending({organization}: Props) {
|
|
|
};
|
|
|
|
|
|
return (
|
|
|
- <Body>
|
|
|
- <Main>
|
|
|
+ <Layout.Body>
|
|
|
+ <Layout.Main>
|
|
|
<h3>{t('Deletion Scheduled')}</h3>
|
|
|
<p>
|
|
|
{tct('The [organization] organization is currently scheduled for deletion.', {
|
|
@@ -93,8 +93,8 @@ function DeletionPending({organization}: Props) {
|
|
|
)}
|
|
|
</small>
|
|
|
</p>
|
|
|
- </Main>
|
|
|
- </Body>
|
|
|
+ </Layout.Main>
|
|
|
+ </Layout.Body>
|
|
|
);
|
|
|
}
|
|
|
|