From 307334e8dd239fbf373bfb564f4b9d945904f558 Mon Sep 17 00:00:00 2001 From: Paul Fitzpatrick Date: Thu, 23 May 2024 15:05:21 -0400 Subject: [PATCH] add missing semicolon --- app/common/BaseAPI.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/common/BaseAPI.ts b/app/common/BaseAPI.ts index 09e1ae49..c9062ab0 100644 --- a/app/common/BaseAPI.ts +++ b/app/common/BaseAPI.ts @@ -68,7 +68,7 @@ export class BaseAPI { // TODO: should this be more selective? if (typeof window !== 'undefined' && window.location && window.location.pathname.endsWith('/admin')) { - const bootKey = new URLSearchParams(window.location.search).get('boot-key') + const bootKey = new URLSearchParams(window.location.search).get('boot-key'); if (bootKey) { this._headers['X-Boot-Key'] = bootKey; }