Fix [object Object] in feedback metadata (#10390)

This commit is contained in:
Michael Telatynski
2023-03-15 16:53:49 +00:00
committed by GitHub
parent 1e651bf1a5
commit a4262cd8cf
3 changed files with 3 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ interface IProps {
title: string;
subheading: string;
rageshakeLabel: string;
rageshakeData?: Record<string, string>;
rageshakeData?: Record<string, any>;
children?: ReactNode;
onFinished(sendFeedback?: boolean): void;
}