Run yarn fix (#4962)

Summary:
[js] Run yarn fix

Pull Request resolved: https://github.com/facebook/flipper/pull/4962

Reviewed By: mweststrate

Differential Revision: D47717348

Pulled By: passy

fbshipit-source-id: 15de379990509d83edf218fe9073107c9b520956
This commit is contained in:
Pascal Hartig
2023-07-25 02:05:37 -07:00
committed by Facebook GitHub Bot
parent e7ac579d1c
commit 51ae6f7cfc

View File

@@ -292,8 +292,8 @@ export class FlipperClient {
if (method === 'getBackgroundPlugins') {
responder.success({
plugins: [...this.plugins.keys()].filter((key) =>
this.plugins.get(key)?.runInBackground?.(),
plugins: [...this.plugins.keys()].filter(
(key) => this.plugins.get(key)?.runInBackground?.(),
),
});
return;