From d1a8f4403a6a8bb08a69b115bdbedcfcdf92ea36 Mon Sep 17 00:00:00 2001 From: saani Date: Tue, 25 Nov 2025 17:41:43 +0000 Subject: [PATCH] fix(settings): remove line break in CORS_ALLOWED_ORIGINS string Consolidate CORS_ALLOWED_ORIGINS default value onto a single line to fix formatting issue. Removes unnecessary line break and trailing whitespace that was splitting the URL string across multiple lines. --- booking_system/settings.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/booking_system/settings.py b/booking_system/settings.py index 9f5756e..d01af99 100644 --- a/booking_system/settings.py +++ b/booking_system/settings.py @@ -19,8 +19,7 @@ ALLOWED_HOSTS = os.getenv( CORS_ALLOWED_ORIGINS = os.getenv( 'CORS_ALLOWED_ORIGINS', - 'http://localhost:3000,http://127.0.0.1:3000,https://attunehearttherapy.com - ' + 'http://localhost:3000,http://127.0.0.1:3000,https://attunehearttherapy.com' ).split(',') -- 2.39.5