From 22403aaadbc346b8cf8103c00e8894361398f57a Mon Sep 17 00:00:00 2001 From: Graham Stewart Date: Tue, 3 Oct 2023 16:23:35 -0700 Subject: [PATCH] lint moment --- app/src/features/surveys/observations/ObservationsTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/features/surveys/observations/ObservationsTable.tsx b/app/src/features/surveys/observations/ObservationsTable.tsx index 3921c6bcc2..99adeda2be 100644 --- a/app/src/features/surveys/observations/ObservationsTable.tsx +++ b/app/src/features/surveys/observations/ObservationsTable.tsx @@ -120,7 +120,7 @@ const ObservationsTable = () => { observationsContext.setInitialRows(rows); } - }, [observationsDataLoader.data]); + }, [observationsContext, observationsDataLoader.data]); const handleDeleteRow = (id: string | number) => { observationsContext.markRecordWithUnsavedChanges(id);