Skip to content

Commit

Permalink
Add x-client-identifier back
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Jan 13, 2025
1 parent c974e54 commit 500fa29
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/tapisui-api/src/utils/apiGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ const apiGenerator = <T extends unknown>(
basePath: string,
jwt: string | null
): T => {
const headers: any = {};
const headers: any = {
'x-client-identifier': `tapisui`,
};
if (jwt) {
headers['X-Tapis-Token'] = jwt;
}
Expand Down

0 comments on commit 500fa29

Please sign in to comment.