Skip to content

Commit

Permalink
Merge pull request #73 from 2rabs/rt/fix-ios
Browse files Browse the repository at this point in the history
🐛 iOS のビルドエラーを解消
  • Loading branch information
tatsutakein authored Nov 26, 2023
2 parents 991f0fa + 8d0cc8a commit 0004c54
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 @@ -12,7 +12,7 @@ public struct ComposeScheduleListScreen: UIViewControllerRepresentable {
getParticipantScheduleListUseCase: Container.shared.get(
type: GetParticipantScheduleListUseCase.self),
userMessageStateHolder: Container.shared.get(type: UserMessageStateHolder.self),
dateTimeFormatter: Container.shared.get(type: CommonNitoDateTimeFormatter.self)
dateTimeFormatter: Container.shared.get(type: CommonNitoDateFormatter.self)
)
)
}
Expand Down
2 changes: 1 addition & 1 deletion app/ios/Modules/Sources/Top/ComposeTopScreen.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public struct ComposeTopScreen: UIViewControllerRepresentable {
stateMachine: TopScreenStateMachine(
getRecentSchedule: Container.shared.get(type: GetRecentScheduleUseCase.self),
userMessageStateHolder: Container.shared.get(type: UserMessageStateHolder.self),
dateTimeFormatter: Container.shared.get(type: CommonNitoDateTimeFormatter.self)
dateTimeFormatter: Container.shared.get(type: CommonNitoDateFormatter.self)
),
onScheduleListClick: onScheduleListButtonClick,
onSettingsClick: onSettingsButtonClick
Expand Down

0 comments on commit 0004c54

Please sign in to comment.