Skip to content

Commit

Permalink
RUM-4149 Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mariedm committed Jun 24, 2024
1 parent 7171d7a commit 613c818
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ internal struct UIProgressViewWireframesBuilder: NodeWireframesBuilder {

let background = builder.createShapeWireframe(
id: backgroundWireframeID,
frame: wireframeRect,
frame: wireframeRect,
backgroundColor: backgroundColor ?? SystemColors.tertiarySystemFill,
cornerRadius: wireframeRect.height/2
cornerRadius: wireframeRect.height / 2
)

// Create progress wireframe
Expand All @@ -68,7 +68,7 @@ internal struct UIProgressViewWireframesBuilder: NodeWireframesBuilder {
borderColor: nil,
borderWidth: nil,
backgroundColor: progressTintColor,
cornerRadius: wireframeRect.height/2,
cornerRadius: wireframeRect.height / 2,
opacity: attributes.alpha
)

Expand Down

0 comments on commit 613c818

Please sign in to comment.