From ee2f659bd6ab18c90c44bcea5c639fbf010d28f6 Mon Sep 17 00:00:00 2001 From: Reckless_Satoshi Date: Sun, 10 Nov 2024 08:51:47 +0000 Subject: [PATCH] Fix routes for /garage --- frontend/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/urls.py b/frontend/urls.py index 4f07d91e..5c525d2d 100644 --- a/frontend/urls.py +++ b/frontend/urls.py @@ -5,8 +5,8 @@ from .views import basic, pro urlpatterns = [ path("", basic, name="basic"), path("create/", basic), - path("robot/", basic), - path("robot/", basic), + path("garage/", basic), + path("garage/", basic), path("offers/", basic), path("order///", basic), path("settings/", basic),