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.
This commit is contained in:
saani 2025-11-25 17:41:43 +00:00
parent 7ee3663ffa
commit d1a8f4403a

View File

@ -19,8 +19,7 @@ ALLOWED_HOSTS = os.getenv(
CORS_ALLOWED_ORIGINS = os.getenv( CORS_ALLOWED_ORIGINS = os.getenv(
'CORS_ALLOWED_ORIGINS', '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(',') ).split(',')