From b16694debe6123e8addb9561ededcfb8222a070a Mon Sep 17 00:00:00 2001 From: Adam Matthiesen Date: Fri, 26 Jan 2024 04:38:54 -0800 Subject: [PATCH] fix spacing --- packages/astro-ghostcms/src/api/api-functions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/astro-ghostcms/src/api/api-functions.ts b/packages/astro-ghostcms/src/api/api-functions.ts index d53bb534..7fa18205 100644 --- a/packages/astro-ghostcms/src/api/api-functions.ts +++ b/packages/astro-ghostcms/src/api/api-functions.ts @@ -14,7 +14,7 @@ const { } = loadEnv('all',process.cwd(),'CONTENT_'); const ghostApiKey = CONTENT_API_KEY; -const ghostUrl = CONF_URL?CONF_URL:CONTENT_API_URL; +const ghostUrl = CONF_URL ? CONF_URL : CONTENT_API_URL; const version = "v5.0"; const api = new TSGhostContentAPI(ghostUrl, ghostApiKey, version);