Fix mis-set variables

This commit is contained in:
Mikayla Maki 2022-12-13 09:58:04 -08:00
parent 9bf0a02eae
commit 790ef19a48
3 changed files with 4 additions and 4 deletions

View file

@ -28,7 +28,7 @@ impl View for UpdateNotification {
fn render(&mut self, cx: &mut gpui::RenderContext<'_, Self>) -> gpui::ElementBox {
let theme = cx.global::<Settings>().theme.clone();
let theme = &theme.simple_message_notification;
let theme = &theme.update_notification;
let app_name = cx.global::<ReleaseChannel>().display_name();