Toaster496's picture
Duplicate from huggingchat/chat-ui
3ea9478
raw
history blame contribute delete
211 Bytes
import { writable } from "svelte/store";
export const ERROR_MESSAGES = {
default: "Oops, something went wrong.",
authOnly: "You have to be logged in.",
};
export const error = writable<string | null>(null);