@wrongstack/tui 0.7.3 → 0.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -3037,10 +3037,9 @@ function reducer(state, action) {
|
|
|
3037
3037
|
case "fleetUsage": {
|
|
3038
3038
|
const cur = state.fleet[action.id];
|
|
3039
3039
|
if (!cur) return state;
|
|
3040
|
-
const cost = cur.cost;
|
|
3041
3040
|
return {
|
|
3042
3041
|
...state,
|
|
3043
|
-
fleet: { ...state.fleet, [action.id]: { ...cur,
|
|
3042
|
+
fleet: { ...state.fleet, [action.id]: { ...cur, lastEventAt: Date.now() } }
|
|
3044
3043
|
};
|
|
3045
3044
|
}
|
|
3046
3045
|
case "fleetDone": {
|