(msg: string, id?: string)
| 62 | } |
| 63 | |
| 64 | export function toastErr(msg: string, id?: string) { |
| 65 | toast.error(msg, { ...toastOptions, id }); |
| 66 | } |
| 67 | |
| 68 | export function detectOS() { |
| 69 | if (typeof window === "undefined") { |
no outgoing calls
no test coverage detected