Skip to content

Commit

Permalink
add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
paulfitz committed May 23, 2024
1 parent 7383b3f commit 307334e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/common/BaseAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 307334e

Please sign in to comment.