import { useChatStore } from "@/app/store/chat"; import Locale from "@/app/locales"; import BrainIcon from "@/app/icons/brain.svg"; import styles from "./index.module.scss"; export default function PromptToast(props: { showToast?: boolean; setShowModal: (_: boolean) => void; }) { const chatStore = useChatStore(); const session = chatStore.currentSession(); const context = session.mask.context; return (