Skip to content

Commit

Permalink
update(typo): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
luisecm committed Oct 25, 2024
1 parent d366728 commit 6fad171
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/components/calling/IncomingCall.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@
<div class="content" style={cancelledCall ? "border: var(--border-width) solid var(--warning-color);" : "border: var(--border-width) solid var(--success-color);"}>
{#if cancelledCall}
<ProfilePicture id={$user.key} hook="friend-profile-picture" size={Size.Large} image={$user.profile.photo.image} status={$user.profile.status} />
<Text hook="text-cancelled-call-username">{$user.name}</Text>
<Text hook="text-has-cancelled" muted size={Size.Large}>{$_("settings.calling.hasCancelled")}</Text>
<Text hook="text-canceled-call-username">{$user.name}</Text>
<Text hook="text-has-canceled" muted size={Size.Large}>{$_("settings.calling.hasCancelled")}</Text>
<Text hook="text-disconnecting" muted size={Size.Large}>{$_("settings.calling.disconnecting")}</Text>
<Spacer less={true} />
{:else}
Expand Down

0 comments on commit 6fad171

Please sign in to comment.