diff --git a/projects/plugins/jetpack/extensions/plugins/publicize/components/publicize-checkbox/index.tsx b/projects/plugins/jetpack/extensions/plugins/publicize/components/publicize-checkbox/index.tsx
index 312eb2c919fd8..a96acf9f66bfc 100644
--- a/projects/plugins/jetpack/extensions/plugins/publicize/components/publicize-checkbox/index.tsx
+++ b/projects/plugins/jetpack/extensions/plugins/publicize/components/publicize-checkbox/index.tsx
@@ -23,17 +23,12 @@ type PublicizeCheckboxProps = {
checked: boolean;
id: string;
disabled: boolean;
- onChange: React.ChangeEventHandler;
+ onChange: () => void;
serviceName: string;
label: string;
picture: string;
};
-/**
- * Publicize checkbox with icon and username label.
- * @param props
- * @returns
- */
const PublicizeCheckbox: React.FC< PublicizeCheckboxProps > = props => {
const { className, checked, id, disabled, onChange, serviceName, label, picture } = props;
@@ -52,11 +47,13 @@ const PublicizeCheckbox: React.FC< PublicizeCheckboxProps > = props => {
onChange={ onChange }
disabled={ disabled }
/>
-
-