From 01432813a617ad3b46ed80ac790f7368d23f8a2f Mon Sep 17 00:00:00 2001 From: "Daniel J. Geiger" <1852529+DanielJGeiger@users.noreply.github.com> Date: Fri, 6 Jan 2023 17:10:53 -0600 Subject: [PATCH] Fix lint. --- src/components/App.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/components/App.tsx b/src/components/App.tsx index 92a9fc550..5a58511f9 100644 --- a/src/components/App.tsx +++ b/src/components/App.tsx @@ -6169,10 +6169,12 @@ class App extends React.Component { ): ContextMenuItems => { const options: ContextMenuItems = []; let addedCustom = false; - this.actionManager.getCustomActions({ data: { source } }).forEach((action) => { - addedCustom = true; - options.push(action); - }); + this.actionManager + .getCustomActions({ data: { source } }) + .forEach((action) => { + addedCustom = true; + options.push(action); + }); if (type === "custom") { return options; }