Skip to content

Commit 0c667bf

Browse files
authoredMar 21, 2025
fix(react-router): missing Symbol declaration for HMR (#3821)
As part of the move to `router-core` in #3803, we accidentally removed the `Symbol` declaration that was being performed in the constructor of the `Route` class. This had a downstream effect on the HMR functionality provided by `@vitejs/plugin-react`. Fixes #3815
1 parent 9065259 commit 0c667bf

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎packages/react-router/src/route.ts

+1
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@ export class Route<
193193
>,
194194
) {
195195
super(options)
196+
;(this as any).$$typeof = Symbol.for('react.memo')
196197
}
197198

198199
useMatch: UseMatchRoute<TId> = (opts) => {

0 commit comments

Comments
 (0)