some fix for models

This commit is contained in:
Flavio Alescio
2023-01-23 17:13:33 +01:00
parent a34efa497b
commit c8ecc927eb
3 changed files with 6 additions and 6 deletions
@@ -21,7 +21,7 @@ enum PollHistoryConstants {
}
enum PollHistoryViewModelResult {
case showPollDetail(poll: PollListData)
case showPollDetail(poll: TimelinePollDetails)
}
// MARK: View
@@ -49,5 +49,5 @@ struct PollHistoryViewState: BindableState {
enum PollHistoryViewAction {
case viewAppeared
case segmentDidChange
case showPollDetail(poll: PollListData)
case showPollDetail(poll: TimelinePollDetails)
}