Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
jdelavande/chat-ui-energy
chkla
/
chat-ui-energy
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
02f32f0
chat-ui-energy
/
src
/
lib
/
stores
/
errors.ts
victor
HF Staff
Toast errors (#91)
ffb0dba
unverified
about 2 years ago
raw
Copy download link
history
blame
Safe
171 Bytes
import
{ writable }
from
"svelte/store"
;
export
const
ERROR_MESSAGES
= {
default
:
"Oops, something went wrong."
,
};
export
const
error = writable<
string
|
null
>(
null
);