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, };