Skip to content

Commit

Permalink
Fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
thecalcc committed Sep 12, 2024
1 parent 2bb3a63 commit ecc568e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/planning-extension/src/extension_bridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ interface IExtensionBridge {
registerEditorField<ComponentProps extends IEditorFieldProps, StateProps extends {}>(
field: string,
Component: React.ComponentClass<ComponentProps>,
props?: (currentProps: React.ComponentProps & StateProps) => Partial<ComponentProps & StateProps>,
props?: (currentProps: ComponentProps & StateProps) => Partial<ComponentProps & StateProps>,
mapStateToProps?: (state: IPlanningAppState) => Partial<ComponentProps & StateProps>,
forwardRef?: boolean
): void;
Expand Down

0 comments on commit ecc568e

Please sign in to comment.