Skip to content

Commit

Permalink
fix: typo in preview display names
Browse files Browse the repository at this point in the history
  • Loading branch information
MojtabaHs committed Jul 26, 2024
1 parent 29c5573 commit bffbb0d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions RevenueCatUI/Views/TemplateBackgroundImageView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -88,28 +88,28 @@ struct TemplateBackgroundImageView_Previews: PreviewProvider {
lowResUrl: nil,
blurred: false
)
.previewDisplayName("Wrong aspect ratio not blured")
.previewDisplayName("Wrong aspect ratio not blurred")

TemplateBackgroundImageView(
url: TestData.paywallAssetBaseURL.appendingPathComponent(TestData.paywallHeaderImageName),
lowResUrl: nil,
blurred: true
)
.previewDisplayName("Wrong aspect ratio blured")
.previewDisplayName("Wrong aspect ratio blurred")

TemplateBackgroundImageView(
url: TestData.paywallAssetBaseURL.appendingPathComponent(TestData.paywallBackgroundImageName),
lowResUrl: nil,
blurred: false
)
.previewDisplayName("Correct aspect ratio not blured")
.previewDisplayName("Correct aspect ratio not blurred")

TemplateBackgroundImageView(
url: TestData.paywallAssetBaseURL.appendingPathComponent(TestData.paywallBackgroundImageName),
lowResUrl: nil,
blurred: true
)
.previewDisplayName("Correct aspect ratio blured")
.previewDisplayName("Correct aspect ratio blurred")
}

}
Expand Down

0 comments on commit bffbb0d

Please sign in to comment.