chat-ui-custom / src /lib /stores /errors.ts
that1cooldude
Initial chat-ui deployment without binary files
973a4e3
Raw
History Blame Contribute Delete
290 Bytes
import { writable } from "svelte/store";
export const ERROR_MESSAGES = {
default: "Oops, something went wrong.",
authOnly: "You have to be logged in.",
rateLimited: "You are sending too many messages. Try again later.",
};
export const error = writable<string | undefined>(undefined);