diff options
author | Eric Bailey <git@esb.lol> | 2025-08-07 08:45:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-07 08:45:35 -0500 |
commit | c103687d66b1446742b5c7b7ec77a24161f7beca (patch) | |
tree | dc7ddb9e3e2069e6c8ac26f681f164ef69e3d9af /src/components/Toast/index.e2e.tsx | |
parent | dbb9ff69184841fa0001489a2faa9235daf0e70b (diff) | |
download | voidsky-c103687d66b1446742b5c7b7ec77a24161f7beca.tar.zst |
Toast tweaks (#8791)
* Tweak colors * Fix e2e * Color tweaks * Fix alignment
Diffstat (limited to 'src/components/Toast/index.e2e.tsx')
-rw-r--r-- | src/components/Toast/index.e2e.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/Toast/index.e2e.tsx b/src/components/Toast/index.e2e.tsx index 57daf5bf0..64072d88d 100644 --- a/src/components/Toast/index.e2e.tsx +++ b/src/components/Toast/index.e2e.tsx @@ -1,5 +1,9 @@ +import {type ToastApi} from '#/components/Toast/types' + export function ToastContainer() { return null } -export function show() {} +export const toast: ToastApi = { + show() {}, +} |