From 170ab33eeea2c2f1440fd6ecc49cd3813628c484 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sat, 21 Jun 2025 18:51:06 +0000 Subject: [PATCH] add ts ignore for errors --- crawler/frontend/src/App.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crawler/frontend/src/App.tsx b/crawler/frontend/src/App.tsx index fcc9ca9..68c116f 100644 --- a/crawler/frontend/src/App.tsx +++ b/crawler/frontend/src/App.tsx @@ -88,6 +88,7 @@ function App() { try { data = await fetchData(user, "/api/listing_geojson", parameters); } catch (error) { + // @ts-expect-error setSubmitError(error.message) setAlertDialogIsOpen(true) } @@ -98,6 +99,7 @@ function App() { try { data = await fetchData(user, "/api/refresh_listings", parameters, 'POST'); } catch (error) { + // @ts-expect-error setSubmitError(error.message) setAlertDialogIsOpen(true) }