(data: ToastNotification)
| 73 | client.getQueryData<ToastNotification | null>(TOAST_NOTIF_KEY) ?? null, |
| 74 | }); |
| 75 | const setToastNotification = (data: ToastNotification) => |
| 76 | client.setQueryData(TOAST_NOTIF_KEY, data); |
| 77 | |
| 78 | const displayToast = ( |
| 79 | message: ReactNode, |
no outgoing calls
no test coverage detected