fix(FN-1866): add warning toast type for ModelOnboardingModal

This commit is contained in:
Fusion
2026-04-16 00:15:41 -07:00
committed by gsxdsm
parent c020764107
commit 5789101cd9

View File

@@ -2,7 +2,7 @@ import { useState, useCallback, useRef, createContext, useContext } from "react"
import type { ReactNode } from "react";
import React from "react";
export type ToastType = "success" | "error" | "info";
export type ToastType = "success" | "error" | "info" | "warning";
export interface Toast {
id: number;