From e8d71df2a06d99a05ffc2be8ae8ae927b93f0d11 Mon Sep 17 00:00:00 2001 From: Stefan Ceriu Date: Tue, 22 Nov 2022 19:50:19 +0200 Subject: [PATCH] Fix app wide accent color --- ElementX/Sources/Application/Application.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ElementX/Sources/Application/Application.swift b/ElementX/Sources/Application/Application.swift index a3918f747..6961bcc84 100644 --- a/ElementX/Sources/Application/Application.swift +++ b/ElementX/Sources/Application/Application.swift @@ -35,7 +35,7 @@ struct Application: App { EmptyView() } else { applicationCoordinator.toPresentable() - .tint(.element.accent) + .accentColor(.element.accent) .task { applicationCoordinator.start() }