Skip to content

Commit 8a7e37d

Browse files
committed
fix build
1 parent f5cc98e commit 8a7e37d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-router/lib/dom/ssr/single-fetch.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ export async function decodeViaTurboStream(
603603
}
604604
},
605605
],
606-
}).then((res) => res.value);
606+
}).then((res: { value: unknown }) => res.value);
607607
}
608608

609609
function unwrapSingleFetchResults(

0 commit comments

Comments
 (0)