From 612c9c68b4a7472e6c2c1894fafdbab371727243 Mon Sep 17 00:00:00 2001 From: snoop Date: Thu, 14 Sep 2017 16:15:55 +0900 Subject: [PATCH] fixed typo --- .../meta/redux/state/SensorItemKeyReadAllByCrawler.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ts/@overflow/meta/redux/state/SensorItemKeyReadAllByCrawler.ts b/src/ts/@overflow/meta/redux/state/SensorItemKeyReadAllByCrawler.ts index e745a93..10c6d7a 100644 --- a/src/ts/@overflow/meta/redux/state/SensorItemKeyReadAllByCrawler.ts +++ b/src/ts/@overflow/meta/redux/state/SensorItemKeyReadAllByCrawler.ts @@ -1,12 +1,12 @@ import MetaSensorItemKey from '../../api/model/MetaSensorItemKey'; export interface State { - readonly MetaSensorIteKeyList: MetaSensorItemKey[]; + readonly MetaSensorItemKeyList: MetaSensorItemKey[]; readonly error?: Error; } export const defaultState: State = { - MetaSensorIteKeyList: undefined, + MetaSensorItemKeyList: undefined, error: undefined, };