about summary refs log tree commit diff
path: root/src/components/Toast/index.e2e.tsx
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2025-08-07 08:45:35 -0500
committerGitHub <noreply@github.com>2025-08-07 08:45:35 -0500
commitc103687d66b1446742b5c7b7ec77a24161f7beca (patch)
treedc7ddb9e3e2069e6c8ac26f681f164ef69e3d9af /src/components/Toast/index.e2e.tsx
parentdbb9ff69184841fa0001489a2faa9235daf0e70b (diff)
downloadvoidsky-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.tsx6
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() {},
+}