17782: Removes the last linter warnings.
[arvados-workbench2.git] / src / store / dialog / with-dialog.ts
index 78543fc989db5f30a79a6c11b6021adca265a2ac..ea96ca0d7621b1959c38e3fb5bc25eaaded59a98 100644 (file)
@@ -20,6 +20,7 @@ export type WithDialogDispatchProps = {
 export type WithDialogProps<T> = WithDialogStateProps<T> & WithDialogDispatchProps;
 export const withDialog = (id: string) =>
     // TODO: How to make compiler happy with & P instead of & any?
+    // eslint-disable-next-line
     <T, P>(component: React.ComponentType<WithDialogProps<T> & any>) =>
         connect(mapStateToProps(id), mapDispatchToProps(id))(component);