WebraftAI's picture
Duplicate from huggingchat/chat-ui
6178b6e
raw
history blame
171 Bytes
import { writable } from "svelte/store";
export const ERROR_MESSAGES = {
default: "Oops, something went wrong.",
};
export const error = writable<string | null>(null);