Fix [object Object]
in feedback metadata (#10390)
This commit is contained in:
parent
1e651bf1a5
commit
a4262cd8cf
3 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -140,7 +140,7 @@ export const SpaceFeedbackPrompt: React.FC<{
|
|||
rageshakeData: Object.fromEntries(
|
||||
["Spaces.allRoomsInHome", "Spaces.enabledMetaSpaces"].map((k) => [
|
||||
k,
|
||||
String(SettingsStore.getValue(k)),
|
||||
SettingsStore.getValue(k),
|
||||
]),
|
||||
),
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue