(fieldId: string, data: CropPlan)
| 1082 | return {}; |
| 1083 | } |
| 1084 | } |
| 1085 | |
| 1086 | function setPlanCache(cacheKey: string, data: CropPlan) { |
| 1087 | const cache = getPlanCache(); |
| 1088 | cache[cacheKey] = { data, timestamp: Date.now() }; |
| 1089 | localStorage.setItem(CROP_PLAN_CACHE_KEY, JSON.stringify(cache)); |
| 1090 | } |
| 1091 |
no test coverage detected