(data: ToastNotification)
| 64 | client.getQueryData<ToastNotification | null>(TOAST_NOTIF_KEY) ?? null, |
| 65 | }); |
| 66 | const setToastNotification = (data: ToastNotification) => |
| 67 | client.setQueryData(TOAST_NOTIF_KEY, data); |
| 68 | |
| 69 | const displayToast = ( |
| 70 | message: ReactNode, |
no outgoing calls
no test coverage detected