Address some of the PR feedback

This commit is contained in:
Jason Robinson 2021-02-09 20:13:49 +02:00
parent a4a478cf72
commit 2197c1e519
3 changed files with 12 additions and 10 deletions

View file

@ -14,11 +14,11 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
import React, {useState} from 'react';
import React, { useState } from 'react';
import HostSignupDialog from "../dialogs/HostSignupDialog";
import {HostSignupStore} from "../../../stores/HostSignupStore";
import {useEventEmitter} from "../../../hooks/useEventEmitter";
import {UPDATE_EVENT} from "../../../stores/AsyncStore";
import { HostSignupStore } from "../../../stores/HostSignupStore";
import { useEventEmitter } from "../../../hooks/useEventEmitter";
import { UPDATE_EVENT } from "../../../stores/AsyncStore";
const HostSignupContainer = () => {
const [isActive, setIsActive] = useState(HostSignupStore.instance.isHostSignupActive);