Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit e9136a2

Browse files
committed
Fixed style + video link 🚀
1 parent 251f25a commit e9136a2

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/posts/2022-06-06-microfrontend-module-federation-dynamic-configuration.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ As we said before the applications we are going to work with are 2:
4848

4949
The final result we want to achive is integrate the `cancel-order` widget so that when the user click on the cancel button of an order card, the cancellation flow will start. In the video below you can see the final result of the implementation described below.
5050

51-
`youtube: XXXXX`
51+
`youtube: https://www.youtube.com/watch?v=iv6wQrp_K4s`
5252

5353
Let's first see how the two app are composed. Both of them use:
5454

@@ -382,10 +382,9 @@ export const CancelOrderPage: FC = () => {
382382
383383
return (
384384
<Suspense fallback={<div/>}>
385-
<CancelOrderWidget
386-
orderId={orderId ?? ""}/>
387-
</Suspense>
388-
);
385+
<CancelOrderWidget orderId={orderId ?? ""}/>
386+
</Suspense>
387+
);
389388
}
390389
391390
```

0 commit comments

Comments
 (0)