From ffd949b452082951271677683af86eca22a43de3 Mon Sep 17 00:00:00 2001 From: Jacob Schlecht Date: Thu, 16 Apr 2026 21:57:16 -0600 Subject: [PATCH] fix: fix translation for hide/show others This commit was made without the use of generative AI. Signed-off-by: Jacob Schlecht --- .../features/voice/callCard/VoiceCallCardActiveRoom.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/client/components/ui/components/features/voice/callCard/VoiceCallCardActiveRoom.tsx b/packages/client/components/ui/components/features/voice/callCard/VoiceCallCardActiveRoom.tsx index 8349db62c..f4088c460 100644 --- a/packages/client/components/ui/components/features/voice/callCard/VoiceCallCardActiveRoom.tsx +++ b/packages/client/components/ui/components/features/voice/callCard/VoiceCallCardActiveRoom.tsx @@ -1,8 +1,7 @@ +import { useLingui } from "@lingui-solid/solid/macro"; +import { createResizeObserver } from "@solid-primitives/resize-observer"; import { createEffect, For, onMount, Show } from "solid-js"; import { TrackLoop } from "solid-livekit-components"; - -import { t } from "@lingui/core/macro"; -import { createResizeObserver } from "@solid-primitives/resize-observer"; import { styled } from "styled-system/jsx"; import { InRoom, useVoice } from "@revolt/rtc"; @@ -57,6 +56,7 @@ const TILE_MIN_WIDTH = "250px", */ function Participants() { const voice = useVoice(); + const { t } = useLingui(); // Modify this value to get test tracks const testTrackCount = 0;