Skip to content

Commit

Permalink
updated a string that has changed
Browse files Browse the repository at this point in the history
  • Loading branch information
Velin92 committed Dec 12, 2024
1 parent 6b4ee5b commit 4ec3ec2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions ElementX/Sources/Mocks/Generated/GeneratedMocks.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6253,10 +6253,10 @@ class JoinedRoomProxyMock: JoinedRoomProxyProtocol {
}
var underlyingIdentityStatusChangesPublisher: CurrentValuePublisher<[IdentityStatusChange], Never>!
var joinRequestsStatePublisher: CurrentValuePublisher<JoinRequestsState, Never> {
get { return underlyingJoinRequestsPublisher }
set(value) { underlyingJoinRequestsPublisher = value }
get { return underlyingJoinRequestsStatePublisher }
set(value) { underlyingJoinRequestsStatePublisher = value }
}
var underlyingJoinRequestsPublisher: CurrentValuePublisher<JoinRequestsState, Never>!
var underlyingJoinRequestsStatePublisher: CurrentValuePublisher<JoinRequestsState, Never>!
var timeline: TimelineProxyProtocol {
get { return underlyingTimeline }
set(value) { underlyingTimeline = value }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ class MediaEventsTimelineScreenViewModel: MediaEventsTimelineScreenViewModelType

private func titleForDate(_ date: Date) -> String {
if Calendar.current.isDate(date, equalTo: .now, toGranularity: .month) {
L10n.commonDateSeparatorThisMonth
L10n.commonDateThisMonth
} else {
date.formatted(.dateTime.month(.wide).year())
}
Expand Down

0 comments on commit 4ec3ec2

Please sign in to comment.