From 82b2c214f1b265ce526e31ab43e5417fe84163a3 Mon Sep 17 00:00:00 2001 From: Ana Date: Wed, 30 Jul 2025 00:36:14 -0700 Subject: [PATCH] update: toast style after lint --- src/view/com/util/Toast.style.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view/com/util/Toast.style.tsx b/src/view/com/util/Toast.style.tsx index 6bfb12bc1c..dfa4f4fd63 100644 --- a/src/view/com/util/Toast.style.tsx +++ b/src/view/com/util/Toast.style.tsx @@ -1,7 +1,7 @@ +import {select, type Theme} from '#/alf' import {Check_Stroke2_Corner0_Rounded as SuccessIcon} from '#/components/icons/Check' import {CircleInfo_Stroke2_Corner0_Rounded as CircleInfo} from '#/components/icons/CircleInfo' import {CircleInfo_Stroke2_Corner0_Rounded as ErrorIcon} from '#/components/icons/CircleInfo' -import {type Theme, select} from '#/alf' import {Warning_Stroke2_Corner0_Rounded as WarningIcon} from '#/components/icons/Warning' export type ToastType = 'default' | 'success' | 'error' | 'warning' | 'info'