Skip to content

Commit

Permalink
Update packages/next/src/client/components/unstable-rethrow.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Janka Uryga <lolzatu2@gmail.com>
  • Loading branch information
ztanner and lubieowoce authored May 21, 2024
1 parent 7918a78 commit 66c96d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/next/src/client/components/unstable-rethrow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { isNextRouterError } from './is-next-router-error'
*
* Read more: [Next.js Docs: `unstable_rethrow`](https://nextjs.org/docs/app/api-reference/functions/unstable_rethrow)
*/
export function unstable_rethrow(error: unknown): void | never {
export function unstable_rethrow(error: unknown): void {
if (
isNextRouterError(error) ||
isBailoutToCSRError(error) ||
Expand Down

0 comments on commit 66c96d9

Please sign in to comment.