Fix lint.

This commit is contained in:
Daniel J. Geiger 2023-01-06 17:10:53 -06:00
parent 6e3b575fa5
commit 01432813a6

View File

@ -6169,7 +6169,9 @@ class App extends React.Component<AppProps, AppState> {
): ContextMenuItems => {
const options: ContextMenuItems = [];
let addedCustom = false;
this.actionManager.getCustomActions({ data: { source } }).forEach((action) => {
this.actionManager
.getCustomActions({ data: { source } })
.forEach((action) => {
addedCustom = true;
options.push(action);
});