t1r
t1r
https://voyager.adriel.cafe/deep-links from ``` setContent { Navigator( HomeScreen, PostListScreen(), PostDetailsScreen(postId) ) } ``` to ``` setContent { Navigator( listOf( HomeScreen, PostListScreen(), PostDetailsScreen(postId) ) ) } ```
**Condition:** ``` "@kaspersky/components": "6.42.1", ``` **Reproductions steps:** 1) Create react app `yarn create react-app my-app --template typescript` 2) Add Kaspersky components deps, (yarn) `"@kaspersky/components": "6.42.1",` 3) Create component with Notification...