Skip to content

Commit

Permalink
[OPP-1599] fnr bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
abrhanav committed Feb 14, 2024
1 parent 37e28cf commit 7b79dda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ObjectHttpFeilHandtering.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function ObjectHttpFeilHandtering({ url, fnr, onError, children, ...rest

useEffect(() => {
let objectUrl = '';
fetch(url, postConfig(fnr))
fetch(url, postConfig({ fnr }))
.then((res) => {
if (!res.ok) {
setError(true);
Expand Down

0 comments on commit 7b79dda

Please sign in to comment.