Skip to content
This repository has been archived by the owner on Nov 22, 2024. It is now read-only.

Commit

Permalink
remove proxy component for launching virtual devices
Browse files Browse the repository at this point in the history
Reviewed By: LukeDefeo

Differential Revision: D57885713

fbshipit-source-id: 576d30cf614d192cb85ad92d6434de51a949880d
  • Loading branch information
antonk52 authored and facebook-github-bot committed May 29, 2024
1 parent 5ba9541 commit 590b6a0
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,11 @@ const COLD_BOOT = 'cold-boot';
export function showEmulatorLauncher(store: Store) {
renderReactRoot((unmount) => (
<Provider store={store}>
<LaunchEmulatorContainer onClose={unmount} />
<LaunchEmulatorDialog onClose={unmount} />;
</Provider>
));
}

function LaunchEmulatorContainer({onClose}: {onClose: () => void}) {
return <LaunchEmulatorDialog onClose={onClose} />;
}

function NoSDKsEnabledAlert({onClose}: {onClose: () => void}) {
const [showSettings, setShowSettings] = useState(false);
const footer = (
Expand Down

0 comments on commit 590b6a0

Please sign in to comment.