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