We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b9d1699 + 1166ca6 commit 2f66be5Copy full SHA for 2f66be5
WooCommerce/Classes/ViewRelated/ReusableViews/SwiftUI Components/AttributedText.swift
@@ -197,13 +197,13 @@ extension EnvironmentValues {
197
198
private extension EnvironmentValues {
199
var foregroundColor: Color? {
200
- get { self[ForegroundColorKey] }
201
- set { self[ForegroundColorKey] = newValue }
+ get { self[ForegroundColorKey.self] }
+ set { self[ForegroundColorKey.self] = newValue }
202
}
203
204
var linkColor: Color? {
205
- get { self[LinkColorKey] }
206
- set { self[LinkColorKey] = newValue }
+ get { self[LinkColorKey.self] }
+ set { self[LinkColorKey.self] = newValue }
207
208
209
0 commit comments