From 6940cb1a96ba7ac2fca3c0fc3b9e368a3f0f847b Mon Sep 17 00:00:00 2001 From: Timo Date: Wed, 4 Jun 2025 12:27:04 +0200 Subject: [PATCH] Fix react errors in settings tab --- src/settings/FeedbackSettingsTab.tsx | 14 ++++++-------- src/tabs/Tabs.tsx | 2 ++ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/settings/FeedbackSettingsTab.tsx b/src/settings/FeedbackSettingsTab.tsx index 0555ca3f..3673bb1a 100644 --- a/src/settings/FeedbackSettingsTab.tsx +++ b/src/settings/FeedbackSettingsTab.tsx @@ -57,14 +57,12 @@ export const FeedbackSettingsTab: FC = ({ roomId }) => { const [optInAnalytics, setOptInAnalytics] = useOptInAnalytics(); const optInDescription = ( - - - -
- You may withdraw consent by unchecking this box. If you are currently in - a call, this setting will take effect at the end of the call. -
-
+ + +
+ You may withdraw consent by unchecking this box. If you are currently in a + call, this setting will take effect at the end of the call. +
); // in the embedded package the widget host is responsible for analytics consent diff --git a/src/tabs/Tabs.tsx b/src/tabs/Tabs.tsx index 4b59e8b6..8bbc55be 100644 --- a/src/tabs/Tabs.tsx +++ b/src/tabs/Tabs.tsx @@ -36,6 +36,7 @@ export function TabContainer({ {tabs.map(({ key, name }) => ( onTabChange(key)} active={key === tab} @@ -46,6 +47,7 @@ export function TabContainer({ {tabs.map(({ key, content }) => (