Spaces:
Sleeping
Sleeping
| import { toast } from 'react-toastify'; | |
| export async function toastOnError<T>(promise: Promise<T>): Promise<T> { | |
| try { | |
| return await promise; | |
| } catch (error: any) { | |
| toast.error(error.message); | |
| throw error; | |
| } | |
| } | |