From 0b5f7e0d024962e370864e4a6558cdc67f0ae3e3 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 6 Aug 2025 16:32:27 -0500 Subject: [PATCH] Fix e2e --- src/components/Toast/index.e2e.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/Toast/index.e2e.tsx b/src/components/Toast/index.e2e.tsx index 57daf5bf0d..64072d88d0 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() {}, +}