Skip to content

Commit

Permalink
fix: correct component type for custom consent screen
Browse files Browse the repository at this point in the history
  • Loading branch information
jkdowdle committed Dec 1, 2023
1 parent 57b28d2 commit 5c43828
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/DeveloperConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export type DeveloperConfig = {
}>;
CustomStacks?: Record<string, () => JSX.Element>;
renderCustomLoginScreen?: () => JSX.Element;
CustomConsentScreen?: (props: CustomConsentScreenProps) => JSX.Element;
CustomConsentScreen?: ComponentType<CustomConsentScreenProps>;
sharingRenderers?: {
pointBreakdown: (props: PointBreakdownProps) => React.JSX.Element;
};
Expand Down

0 comments on commit 5c43828

Please sign in to comment.