Skip to content

Commit

Permalink
Fix build errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
pixlwave committed Aug 18, 2022
1 parent 9848782 commit 4e9af06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ struct LiveLocationSharingViewer: View {
HStack(spacing: 10) {
Image(uiImage: Asset.Images.locationLiveCellIcon.image)
.renderingMode(.template)
.foregroundColor(theme.colors.quaternaryContent)
.foregroundColor(theme.colors.quarterlyContent)
.frame(width: 40, height: 40)
Text(VectorL10n.liveLocationSharingEnded)
.font(theme.fonts.body)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ struct OnboardingCongratulationsViewState: BindableState {
let attributedMessage = NSMutableAttributedString(string: message)
let range = (message as NSString).range(of: userId)
if range.location != NSNotFound {
attributedMessage.addAttributes([.font: UIFont.element.body.bold], range: range)
attributedMessage.addAttributes([.font: UIFont.preferredFont(forTextStyle: .body).vc_bold], range: range)
}

return attributedMessage
Expand Down

0 comments on commit 4e9af06

Please sign in to comment.