(url: string | null | undefined)
| 428 | |
| 429 | let isMounted = true; |
| 430 | const applyUrl = (url: string | null | undefined) => { |
| 431 | if (isMounted) { |
| 432 | applySearchParams(getShowcaseSearchParamsFromUrl(url)); |
| 433 | } |
| 434 | }; |
| 435 | const subscription = Linking.addEventListener("url", ({ url }) => { |
| 436 | applyUrl(url); |
| 437 | }); |
no test coverage detected