From a028aaf6166fbdbba4e01f4178bccd0d7ccd1f73 Mon Sep 17 00:00:00 2001 From: William Newman <3382274+newmanw@users.noreply.github.com> Date: Thu, 14 Nov 2024 12:44:37 -0700 Subject: [PATCH] [service] Clean up TODO comments --- plugins/arcgis/service/src/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/arcgis/service/src/index.ts b/plugins/arcgis/service/src/index.ts index f3ac713c3..b70e32333 100644 --- a/plugins/arcgis/service/src/index.ts +++ b/plugins/arcgis/service/src/index.ts @@ -92,7 +92,6 @@ const arcgisPluginHooks: InitPluginHook = { routes.get('/oauth/authenticate', async (req, res) => { const code = req.query.code as string - // TODO is clientId here in req or response let state: { url: string, clientId: string } try { const { url, clientId } = JSON.parse(req.query.state as string) @@ -210,7 +209,6 @@ const arcgisPluginHooks: InitPluginHook = { } try { - // TODO can you validate existing services? let existingService = config.featureServices.find(service => service.url === url) if (!existingService) { config.featureServices.push(service)