Skip to content

Commit

Permalink
fix ar lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
marjisound committed Oct 15, 2024
1 parent 8f767e2 commit 49d0ef7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps-rendering/src/components/Callout/Callout.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pastDate.setDate(pastDate.getDate() - 1);

const mockFetch =
(mockedStatus: number) => (input: RequestInfo, init?: RequestInit) => {
const url = input.toString();
const url = new Request(input).url;

if (
url ===
Expand Down

0 comments on commit 49d0ef7

Please sign in to comment.