Skip to content

Commit dbc48d0

Browse files
Update Label.tsx
1 parent 3c0d8d1 commit dbc48d0

File tree

1 file changed

+4
-1
lines changed
  • packages/connect-react/src/components

1 file changed

+4
-1
lines changed

packages/connect-react/src/components/Label.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import type { CSSProperties } from "react";
2-
import type { ConfigurableProp, ConfigurableProps } from "@pipedream/sdk";
2+
import type {
3+
ConfigurableProp, ConfigurableProps,
4+
} from "@pipedream/sdk";
35
import { useCustomize } from "../hooks/customization-context";
46
import type { FormFieldContext } from "../hooks/form-field-context";
57
import { FormContext } from "../hooks/form-context";
@@ -28,6 +30,7 @@ export function Label<T extends ConfigurableProps, U extends ConfigurableProp>(p
2830

2931
// XXX have to fix typing in customization (and elsewere really)
3032
return (
33+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
3134
<label htmlFor={id} {...getProps("label", baseStyles, props as any)}>{text}</label>
3235
);
3336
}

0 commit comments

Comments
 (0)