Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

KMP framework update changes #13

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import CurrencyExchangeKMP
} else if newState.error != nil {
// TODO: Handle error
} else {
guard let exchangeRates = newState.launches.first?.rates else { return }
guard let exchangeRates = newState.currencyExchange.first?.rates else { return }

self?.currentDayExhangeRates = exchangeRates.map {
CurrencyExchangeRateModel(
Expand All @@ -55,7 +55,7 @@ import CurrencyExchangeKMP
} else if newState.error != nil {
// TODO: Handle error
} else {
self?.lastTenDaysCurrencyExchangeModels = newState.launches.map {
self?.lastTenDaysCurrencyExchangeModels = newState.currencyExchange.map {
CurrencyExchangeModel(
date: $0.effectiveDate,
exchangeRates: $0.rates.map {
Expand Down