Skip to content

Commit

Permalink
Merge pull request #1793 from usdoj/develop
Browse files Browse the repository at this point in the history
Latest from develop
  • Loading branch information
brockfanning authored Oct 18, 2023
2 parents aae3185 + b0fff1a commit db43c61
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion js/util/wizard_api.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
import settings from 'settings';

export function fetchWizardInitData() {
return fetch(`${settings.api.requestApiBaseURL}/foia_wizard`)
const options = {
headers: {
'X-Api-Key': settings.api.apiProxyKey,
},
};
return fetch(`${settings.api.requestApiBaseURL}/foia_wizard`, options)
.then((r) => r.json());
}

Expand Down

0 comments on commit db43c61

Please sign in to comment.