Skip to content

Commit

Permalink
Fix missing argument in TypeScript definition
Browse files Browse the repository at this point in the history
  • Loading branch information
donnapep committed Dec 10, 2024
1 parent cfc6f21 commit d186a87
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { HOW_TO_MIGRATE_OPTIONS } from 'calypso/landing/stepper/constants';
import './style.scss';

interface Props {
onClick: () => void;
onClick: ( option: string ) => void;
}

export const DIYOption: FC< Props > = ( { onClick } ) => {
Expand Down

0 comments on commit d186a87

Please sign in to comment.