From 61bb537a66fdd9d733f9cef078bedca89a7583f7 Mon Sep 17 00:00:00 2001 From: Uma Sankar Date: Mon, 28 Oct 2019 07:34:40 -0700 Subject: [PATCH] Corrected schedule spelling (#608) Summary: Fixed a type in Logs Plugin Pull Request resolved: https://github.com/facebook/flipper/pull/608 Reviewed By: jknoxville Differential Revision: D18165001 Pulled By: passy fbshipit-source-id: 4635ce101abbb0146628235010587d1a9d07db8c --- src/plugins/logs/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/logs/index.tsx b/src/plugins/logs/index.tsx index a0fcf6e9f..f6b089e73 100644 --- a/src/plugins/logs/index.tsx +++ b/src/plugins/logs/index.tsx @@ -491,7 +491,7 @@ export default class LogTable extends FlipperDevicePlugin< this.logListener = this.device.addLogListener((entry: DeviceLogEntry) => { const processedEntry = processEntry(entry, String(this.counter++)); this.incrementCounterIfNeeded(processedEntry.entry); - this.scheudleEntryForBatch(processedEntry); + this.scheduleEntryForBatch(processedEntry); }); } @@ -518,7 +518,7 @@ export default class LogTable extends FlipperDevicePlugin< } }; - scheudleEntryForBatch = (item: { + scheduleEntryForBatch = (item: { row: TableBodyRow; entry: DeviceLogEntry; }) => {