Duplicated from jdelavande/chat-ui-energy
ffb0dba 566c2fc ffb0dba
1
2
3
4
5
6
7
8
9
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);