From 16d7969bc6e2bfa610beb569a4e22271872ac2eb Mon Sep 17 00:00:00 2001 From: taku072002T Date: Wed, 11 Sep 2024 14:07:38 +0900 Subject: [PATCH] Fixed multiple fetch problem in tweets/home,but not fixed in favorites count --- mysite/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysite/urls.py b/mysite/urls.py index b74deda..1f879c4 100644 --- a/mysite/urls.py +++ b/mysite/urls.py @@ -22,5 +22,5 @@ path("accounts/", include("accounts.urls")), path("tweets/", include("tweets.urls"), name="tweets"), path("", include("welcome.urls"), name="welcome"), - path("__debug__/", include("debug_toolbar.urls")), + # path("__debug__/", include("debug_toolbar.urls")), ]