Skip to content

Commit ffff73d

Browse files
committed
fix for lint
1 parent cd5534c commit ffff73d

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

dash/dash-renderer/src/dashApi.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@ function getLayout(componentPathOrId: DashLayoutPath | string): any {
3535
}
3636
}
3737

38-
window.dash_component_api = Object.assign(
39-
window.dash_component_api || {},
40-
{
38+
window.dash_component_api = Object.assign(window.dash_component_api || {}, {
4139
ExternalWrapper,
4240
DashContext,
4341
useDashContext,
@@ -48,5 +46,4 @@ window.dash_component_api = Object.assign(
4846
useDevtool,
4947
useDevtoolMenuButtonClassName
5048
}
51-
}
52-
);
49+
});

0 commit comments

Comments
 (0)