diff --git a/src/frontend/screens/ObservationsList/index.tsx b/src/frontend/screens/ObservationsList/index.tsx index e14463713..fb61def63 100644 --- a/src/frontend/screens/ObservationsList/index.tsx +++ b/src/frontend/screens/ObservationsList/index.tsx @@ -32,10 +32,7 @@ const m = defineMessages({ const OBSERVATION_CELL_HEIGHT = 80; -const getItemLayout = ( - data: Observation[] | null | undefined, - index: number, -) => ({ +const getItemLayout = (_data: unknown, index: number) => ({ length: OBSERVATION_CELL_HEIGHT, offset: OBSERVATION_CELL_HEIGHT * index, index,