Run prettier fix
Summary: Should also fix the build. Reviewed By: jknoxville Differential Revision: D14477777 fbshipit-source-id: 01fcfb2321c9b7a12acdf079473d91b6805d4dda
This commit is contained in:
committed by
Facebook Github Bot
parent
b354a82066
commit
3141b954bf
@@ -68,7 +68,7 @@ export type SecureServerConfig = {|
|
||||
* It also deploys the Flipper CA cert to the app.
|
||||
* The app can trust a server if and only if it has a certificate signed by the
|
||||
* Flipper CA.
|
||||
*/
|
||||
*/
|
||||
export default class CertificateProvider {
|
||||
logger: Logger;
|
||||
adb: Promise<any>;
|
||||
|
||||
@@ -74,8 +74,8 @@ export function processNotificationStates(
|
||||
devicePlugins: Map<string, Class<FlipperDevicePlugin<>>>,
|
||||
): Array<PluginNotification> {
|
||||
let activeNotifications = allActiveNotifications.filter(notif => {
|
||||
const filteredClients = clients.filter(
|
||||
client => (notif.client ? client.id.includes(notif.client) : false),
|
||||
const filteredClients = clients.filter(client =>
|
||||
notif.client ? client.id.includes(notif.client) : false,
|
||||
);
|
||||
return (
|
||||
filteredClients.length > 0 ||
|
||||
|
||||
Reference in New Issue
Block a user