From ea766a188495cad69ff89464442ca825dc19fa10 Mon Sep 17 00:00:00 2001 From: Sandra Hoang Date: Tue, 17 Dec 2024 16:13:54 -0500 Subject: [PATCH] fix lint --- .../components/exploration/components/layer-info-modal.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/scripts/components/exploration/components/layer-info-modal.tsx b/app/scripts/components/exploration/components/layer-info-modal.tsx index 8a4b8e10c..75a6f49a8 100644 --- a/app/scripts/components/exploration/components/layer-info-modal.tsx +++ b/app/scripts/components/exploration/components/layer-info-modal.tsx @@ -101,9 +101,10 @@ export default function LayerInfoModal(props: LayerInfoModalProps) { const handleButtonClick = () => { close(); if (onNavigation) { - onNavigation(dataCatalogPage) + onNavigation(dataCatalogPage); } }; + return (