From 390673800eaecfde959349628821a491334e3c83 Mon Sep 17 00:00:00 2001 From: Thomas Ricouard Date: Thu, 24 Oct 2024 13:54:16 +0100 Subject: [PATCH] Fix crash on emoji picket on macOS --- .../Sources/StatusKit/Editor/Components/AccessoryView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Packages/StatusKit/Sources/StatusKit/Editor/Components/AccessoryView.swift b/Packages/StatusKit/Sources/StatusKit/Editor/Components/AccessoryView.swift index 00f80851..58d49fcc 100644 --- a/Packages/StatusKit/Sources/StatusKit/Editor/Components/AccessoryView.swift +++ b/Packages/StatusKit/Sources/StatusKit/Editor/Components/AccessoryView.swift @@ -179,6 +179,7 @@ extension StatusEditor { .accessibilityLabel("accessibility.editor.button.custom-emojis") .sheet(isPresented: $isCustomEmojisSheetDisplay) { CustomEmojisView(viewModel: focusedSEVM) + .environment(theme) } }