Skip to content

Commit

Permalink
fix: remove no longer required cast
Browse files Browse the repository at this point in the history
  • Loading branch information
pamapa committed Jan 17, 2025
1 parent 727c9a1 commit 0bda5a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/JsonService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export class JsonService {
(this._extraHeaders[headerName] as ()=>string)() :
this._extraHeaders[headerName];
if (content && content !== "") {
headers[headerName] = content as string;
headers[headerName] = content;
}
});
}
Expand Down

0 comments on commit 0bda5a6

Please sign in to comment.