| 69 | const GEE_ANALYTICS_CACHE_KEY = "gee-analytics-cache"; |
| 70 | const QUERY_CACHE_TTL_MS = 60 * 60 * 1000; |
| 71 | |
| 72 | interface FieldComparisonColumnProps { |
| 73 | field: Field; |
| 74 | startDate: Date; |
| 75 | endDate: Date; |
| 76 | compact?: boolean; |
| 77 | gradientIdSuffix?: string; |
| 78 | } |
| 79 | |
| 80 | const FieldComparisonColumn = ({ field, startDate, endDate, compact = false, gradientIdSuffix = "" }: FieldComparisonColumnProps) => { |
nothing calls this directly
no outgoing calls
no test coverage detected