File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ export const addSteps = addMigrationSteps('1.52.0', [
8282 // .abPlayers in the overrides:
8383 for ( const override of studio . routeSetsWithOverrides . overrides ) {
8484 if ( override . op === 'set' ) {
85+ if ( override . path . includes ( '.' ) ) continue // Only include overrides at the top level
8586 const value = override . value as StudioRouteSet
8687
8788 if ( ! value . abPlayers ) {
@@ -113,6 +114,7 @@ export const addSteps = addMigrationSteps('1.52.0', [
113114 // .abPlayers in the overrides:
114115 for ( const override of newRouteSetsWithOverrides . overrides ) {
115116 if ( override . op === 'set' ) {
117+ if ( override . path . includes ( '.' ) ) continue // Only include overrides at the top level
116118 const value = override . value as StudioRouteSet
117119
118120 if ( ! value . abPlayers ) {
You can’t perform that action at this time.
0 commit comments