Skip to content

Commit

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

0 comments on commit c974e54

Please sign in to comment.