diff --git a/app/components/with-daemon-status-check.js b/app/components/with-daemon-status-check.js index e587b7d..16c517b 100644 --- a/app/components/with-daemon-status-check.js +++ b/app/components/with-daemon-status-check.js @@ -1,6 +1,8 @@ // @flow import React, { type ComponentType, Component } from 'react'; +import { LoadingScreen } from './loading-screen'; + import rpc from '../../services/api'; type State = { @@ -51,6 +53,6 @@ export const withDaemonStatusCheck = ( return ; } - return 'Daemon is starting...'; + return ; } };