diff --git a/src/frontend/src/features/home/components/LaterMeetingDialog.tsx b/src/frontend/src/features/home/components/LaterMeetingDialog.tsx
index 526c61ef..24cddea8 100644
--- a/src/frontend/src/features/home/components/LaterMeetingDialog.tsx
+++ b/src/frontend/src/features/home/components/LaterMeetingDialog.tsx
@@ -71,7 +71,11 @@ export const LaterMeetingDialog = ({
aria-label={t('copyUrl')}
tooltip={t('copyUrl')}
>
- {isRoomUrlCopied ? : }
+ {isRoomUrlCopied ? (
+
+ ) : (
+
+ )}
)}
@@ -103,13 +107,18 @@ export const LaterMeetingDialog = ({
>
{isCopied ? (
<>
-
+
{t('copied')}
>
) : (
<>
{t('copy')}
>
@@ -131,7 +140,11 @@ export const LaterMeetingDialog = ({
>
{isCopied ? (
<>
-
+
{t('copied')}
>
) : (
@@ -139,6 +152,7 @@ export const LaterMeetingDialog = ({
{isHovered ? (
t('copy')
@@ -173,6 +187,7 @@ export const LaterMeetingDialog = ({
className={css({
fill: 'primary.500',
})}
+ aria-hidden="true"
/>
diff --git a/src/frontend/src/features/rooms/components/InviteDialog.tsx b/src/frontend/src/features/rooms/components/InviteDialog.tsx
index 63338280..8bc1d1a5 100644
--- a/src/frontend/src/features/rooms/components/InviteDialog.tsx
+++ b/src/frontend/src/features/rooms/components/InviteDialog.tsx
@@ -115,7 +115,11 @@ export const InviteDialog = (props: Omit) => {
aria-label={t('copyUrl')}
tooltip={t('copyUrl')}
>
- {isRoomUrlCopied ? : }
+ {isRoomUrlCopied ? (
+
+ ) : (
+
+ )}
)}
@@ -147,13 +151,18 @@ export const InviteDialog = (props: Omit) => {
>
{isCopied ? (
<>
-
+
{t('copied')}
>
) : (
<>
{t('copy')}
>
diff --git a/src/frontend/src/features/rooms/livekit/components/Info.tsx b/src/frontend/src/features/rooms/livekit/components/Info.tsx
index c416ebea..afab80e0 100644
--- a/src/frontend/src/features/rooms/livekit/components/Info.tsx
+++ b/src/frontend/src/features/rooms/livekit/components/Info.tsx
@@ -78,12 +78,20 @@ export const Info = () => {
>
{isCopied ? (
<>
-
+
{t('roomInformation.button.copied')}
>
) : (
<>
-
+
{t('roomInformation.button.copy')}
>
)}