chat-uigl / src /lib /stores /errors.ts
DakMak's picture
Duplicate from coyotte508/chat-ui
ece0c29
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);