Remove NEW_CLIENT_SANITY_CHECK

Summary: This isn't needed anymore as it's taken care of by the Client class when it fails to find it's own matching device.

Reviewed By: mweststrate

Differential Revision: D19499929

fbshipit-source-id: e54dea6e680a9fa3cd3572cdd65434922d51c4ea
This commit is contained in:
John Knox
2020-01-22 07:45:29 -08:00
committed by Facebook Github Bot
parent a3a3db5363
commit 06218b13f8
2 changed files with 0 additions and 30 deletions

View File

@@ -23,13 +23,6 @@ export default (store: Store, logger: Logger) => {
type: 'NEW_CLIENT',
payload: client,
});
// Wait 2 seconds, and then trigger another event so we can check it's displayed
setTimeout(() => {
store.dispatch({
type: 'NEW_CLIENT_SANITY_CHECK',
payload: client,
});
}, 2000);
});
server.addListener('removed-client', (id: string) => {