diff --git a/frontend/components/forms/RegistrationForm/ConfirmationPage/ConfirmationPage.jsx b/frontend/components/forms/RegistrationForm/ConfirmationPage/ConfirmationPage.jsx index 1ea6a26e06..df09cd6e07 100644 --- a/frontend/components/forms/RegistrationForm/ConfirmationPage/ConfirmationPage.jsx +++ b/frontend/components/forms/RegistrationForm/ConfirmationPage/ConfirmationPage.jsx @@ -15,7 +15,25 @@ class ConfirmationPage extends Component { handleSubmit: PropTypes.func, }; + importOsqueryConfig = () => { + const disableImport = true; + + if (disableImport) { + return false; + } + + return ( +
+ +

I am migrating an existing osquery installation.

+

Take me to the Import Configuration page.

+
+
+ ); + } + render () { + const { importOsqueryConfig } = this; const { className, handleSubmit, @@ -55,12 +73,7 @@ class ConfirmationPage extends Component { -
- -

I am migrating an existing osquery installation.

-

Take me to the Import Configuration page.

-
-
+ {importOsqueryConfig()}