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; }