(href?: string)
| 5 | } |
| 6 | |
| 7 | export const handleNotificationClick = (href?: string) => { |
| 8 | window.focus() |
| 9 | if (!href) return |
| 10 | if (nav) return nav(href) |
| 11 | console.warn("notification-click: navigate function not set, falling back to window.location.assign") |
| 12 | window.location.assign(href) |
| 13 | } |
no test coverage detected