expo-router 2.0.3 → 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -153,7 +153,7 @@ export function getPathDataFromState<ParamList extends object>(
|
|
|
153
153
|
}
|
|
154
154
|
|
|
155
155
|
return getPathFromResolvedState(
|
|
156
|
-
state,
|
|
156
|
+
JSON.parse(JSON.stringify(state)),
|
|
157
157
|
// Create a normalized configs object which will be easier to use
|
|
158
158
|
createNormalizedConfigs(options.screens),
|
|
159
159
|
{ preserveGroups, preserveDynamicRoutes }
|