From 7b07bc0552b4bf99aa808b25f6abae1a5ed697a9 Mon Sep 17 00:00:00 2001 From: Zhen Li Date: Sun, 25 Aug 2024 18:34:59 -0400 Subject: [PATCH] Zero concurrency warnings --- Sources/Grape/Modifiers/GraphForegroundScale.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Grape/Modifiers/GraphForegroundScale.swift b/Sources/Grape/Modifiers/GraphForegroundScale.swift index 8b3f4c9..3fe2809 100644 --- a/Sources/Grape/Modifiers/GraphForegroundScale.swift +++ b/Sources/Grape/Modifiers/GraphForegroundScale.swift @@ -12,7 +12,7 @@ extension EnvironmentValues { } } - private struct __Key_graphForegroundScaleEnvironment: SwiftUICore.EnvironmentKey { + private struct __Key_graphForegroundScaleEnvironment: EnvironmentKey { typealias Value = [AnyHashable: GraphicsContext.Shading] static var defaultValue: Value { [:] } }