From 6763af119f194dc08728d72a9a1f11aca992ae27 Mon Sep 17 00:00:00 2001 From: Nathan Franklin Date: Fri, 26 Jul 2024 08:40:31 -0500 Subject: [PATCH] Fix missing comma in get_client_url --- geoapi/routes/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geoapi/routes/auth.py b/geoapi/routes/auth.py index 2960e78c..f0c35999 100644 --- a/geoapi/routes/auth.py +++ b/geoapi/routes/auth.py @@ -39,7 +39,7 @@ def get_client_url(url): """ client_urls = [ "http://localhost:4200/", - "https://hazmapper.tacc.utexas.edu/hazmapper/" + "https://hazmapper.tacc.utexas.edu/hazmapper/", "https://hazmapper.tacc.utexas.edu/staging/", "https://hazmapper.tacc.utexas.edu/dev/", "https://hazmapper.tacc.utexas.edu/exp/",