From 04687d4fbdc702110a3e9275a6e1bd38947d0610 Mon Sep 17 00:00:00 2001 From: frostyfan109 Date: Wed, 12 Nov 2025 18:32:37 -0500 Subject: [PATCH] fix port on csrf trusted origins --- appstore/appstore/settings/base.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/appstore/appstore/settings/base.py b/appstore/appstore/settings/base.py index f3ab83c8..de8491c9 100644 --- a/appstore/appstore/settings/base.py +++ b/appstore/appstore/settings/base.py @@ -374,10 +374,10 @@ ] CSRF_TRUSTED_ORIGINS += [ - "https://localhost", - "https://127.0.0.1", - "http://localhost", - "http://127.0.0.1", + "https://localhost:3000", + "https://127.0.0.1:3000", + "http://localhost:3000", + "http://127.0.0.1:3000", ] CORS_ALLOWED_ORIGINS = [