File tree Expand file tree Collapse file tree
features/Delivery/Streams/Stream Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ export const StreamLanding = () => {
5656
5757 const landingHeaderProps : LandingHeaderProps = {
5858 breadcrumbProps : {
59- pathname : ' /logs/delivery/streams/summary' ,
59+ pathname : ` /logs/delivery/streams/${ streamId } ` ,
6060 crumbOverrides : [
6161 {
6262 label : 'Delivery' ,
Original file line number Diff line number Diff line change @@ -22,11 +22,7 @@ const deliveryLandingRoute = createRoute({
2222 } ,
2323 getParentRoute : ( ) => deliveryRoute ,
2424 path : '/' ,
25- } ) . lazy ( ( ) =>
26- import ( 'src/features/Delivery/deliveryLandingLazyRoute' ) . then (
27- ( m ) => m . deliveryLandingLazyRoute
28- )
29- ) ;
25+ } ) ;
3026
3127const streamsRoute = createRoute ( {
3228 getParentRoute : ( ) => deliveryRoute ,
@@ -76,11 +72,7 @@ const streamLandingRoute = createRoute({
7672 } ,
7773 getParentRoute : ( ) => streamRoute ,
7874 path : '/' ,
79- } ) . lazy ( ( ) =>
80- import ( 'src/features/Delivery/Streams/Stream/streamLandingLazyRoute' ) . then (
81- ( m ) => m . streamLandingLazyRoute
82- )
83- ) ;
75+ } ) ;
8476
8577const streamSummaryRoute = createRoute ( {
8678 getParentRoute : ( ) => streamRoute ,
@@ -161,11 +153,7 @@ const destinationLandingRoute = createRoute({
161153 } ,
162154 getParentRoute : ( ) => destinationRoute ,
163155 path : '/' ,
164- } ) . lazy ( ( ) =>
165- import (
166- 'src/features/Delivery/Destinations/DestinationForm/destinationEditLazyRoute'
167- ) . then ( ( m ) => m . destinationEditLazyRoute )
168- ) ;
156+ } ) ;
169157
170158const destinationSummaryRoute = createRoute ( {
171159 getParentRoute : ( ) => destinationRoute ,
You can’t perform that action at this time.
0 commit comments