From 1a3c931d6197f5aeb69819a7cf6386ff232a6748 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Wed, 3 Jan 2024 17:54:53 -0500 Subject: [PATCH] Fix icon path for `Icon::AudioOn` (#3869) This PR fixes the icon path for `Icon::AudioOn` so that it points to a file that exists. Release Notes: - Fixed the loading of the deafen icon in the call controls. --- crates/ui/src/components/icon.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ui/src/components/icon.rs b/crates/ui/src/components/icon.rs index f1916d3dce..9c0b1e58e3 100644 --- a/crates/ui/src/components/icon.rs +++ b/crates/ui/src/components/icon.rs @@ -121,7 +121,7 @@ impl Icon { Icon::ArrowUpRight => "icons/arrow_up_right.svg", Icon::AtSign => "icons/at_sign.svg", Icon::AudioOff => "icons/speaker_off.svg", - Icon::AudioOn => "icons/speaker-loud.svg", + Icon::AudioOn => "icons/speaker_loud.svg", Icon::Backspace => "icons/backspace.svg", Icon::Bell => "icons/bell.svg", Icon::BellOff => "icons/bell_off.svg",