(url?: string | null)
| 822 | } |
| 823 | |
| 824 | function getWebPreviewDisplayUrl(url?: string | null): string { |
| 825 | return url?.trim() || "about:blank"; |
| 826 | } |
| 827 | |
| 828 | function WebViewPreviewFallback({ url }: { url?: string | null }) { |
| 829 | const displayUrl = getWebPreviewDisplayUrl(url); |
no outgoing calls
no test coverage detected