Skip to content

Commit d3674e0

Browse files
committed
small fixes
1 parent b49d841 commit d3674e0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/containers/currency-converter-container/components/currency-converter.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ interface LocalProps {
88
currencies: Object;
99
baseCurrency: string;
1010
targetCurrency: string;
11-
baseValue: string;
12-
targetValue: string;
11+
baseValue: number;
12+
targetValue: number;
1313
onBaseCurrencyChange: (newCurrency: string) => void;
1414
onTargetCurrencyChange: (newCurrency: string) => void;
1515
onBaseValueChange: (newCurrency: string) => void;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
interface FluxStandardAction<PayloadType> {
2-
type?: string;
3-
payload?: PayloadType;
2+
type: string;
3+
payload: PayloadType;
44
error?: boolean;
55
meta?: any;
66
}

0 commit comments

Comments
 (0)