update type errors

This commit is contained in:
Ana
2025-07-30 01:08:14 -07:00
parent d141921abf
commit 18add1cff9
4 changed files with 19 additions and 7 deletions
+3 -2
View File
@@ -12,8 +12,9 @@ import {H1, Text} from '#/components/Typography'
function ToastPreview({message, type}: {message: string; type: ToastType}) {
const t = useTheme()
const toastStyles = getToastTypeStyles(t)
const colors = toastStyles[type]
const IconComponent = TOAST_TYPE_TO_ICON[type]
const colors = toastStyles[type as keyof typeof toastStyles]
const IconComponent =
TOAST_TYPE_TO_ICON[type as keyof typeof TOAST_TYPE_TO_ICON]
return (
<Pressable