Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 290 Bytes
ffb0dba 566c2fc a3cae97 ffb0dba a1a6daf |
1 2 3 4 5 6 7 8 9 10 |
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);
|