Skip to content

Commit 9a15589

Browse files
committed
CR changes 1
1 parent 37ef37d commit 9a15589

2 files changed

Lines changed: 4 additions & 16 deletions

File tree

packages/manager/src/features/Delivery/Streams/Stream/StreamLanding.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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',

packages/manager/src/routes/delivery/index.ts

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff 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

3127
const 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

8577
const 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

170158
const destinationSummaryRoute = createRoute({
171159
getParentRoute: () => destinationRoute,

0 commit comments

Comments
 (0)