Skip to content

Commit

Permalink
Fix default color in case of nil
Browse files Browse the repository at this point in the history
  • Loading branch information
Bunn committed Dec 11, 2024
1 parent 2811c4d commit a0d2307
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ import UIKit

extension UIColor {
static var webViewBackgroundColor: UIColor {
return UIColor(named: "webViewBackgroundColor", in: Bundle.module, compatibleWith: nil) ?? UIColor.red
return UIColor(named: "webViewBackgroundColor", in: Bundle.module, compatibleWith: nil) ?? UIColor.clear
}
}

0 comments on commit a0d2307

Please sign in to comment.