Skip to content

Commit

Permalink
Fix an inconsistency in the App Lock screen's background colour. (#2035)
Browse files Browse the repository at this point in the history
  • Loading branch information
pixlwave authored Nov 7, 2023
1 parent 30e8753 commit 6adedaf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ struct AppLockScreen: View {
}
.font(.compound.bodyMDSemibold)
}
.background(Color.compound.bgCanvasDefault.ignoresSafeArea())
.background()
.environment(\.backgroundStyle, AnyShapeStyle(Color.compound.bgCanvasDefault))
.alert(item: $context.alertInfo)
}

Expand Down
1 change: 1 addition & 0 deletions changelog.d/2029.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix an inconsistency in the App Lock screen's background colour.

0 comments on commit 6adedaf

Please sign in to comment.