From 5c5bca4341d396b81d25d3cd2547cf904c29b2d2 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Fri, 18 Jul 2025 12:23:35 +0300 Subject: [PATCH] fix types --- src/components/Layout/Header/GlassyBackdrop.web.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Layout/Header/GlassyBackdrop.web.tsx b/src/components/Layout/Header/GlassyBackdrop.web.tsx index 4976823512..7e663495b3 100644 --- a/src/components/Layout/Header/GlassyBackdrop.web.tsx +++ b/src/components/Layout/Header/GlassyBackdrop.web.tsx @@ -1,7 +1,7 @@ import {View} from 'react-native' import {isAndroidWeb} from '#/lib/browser' -import {atoms as a, useTheme} from '#/alf' +import {atoms as a, useTheme, web} from '#/alf' /** * GlassyBackdrop component @@ -31,7 +31,7 @@ export function GlassyBackdrop() { a.absolute, a.inset_0, a.pointer_events_none, - {backdropFilter: 'blur(16px)'}, + web({backdropFilter: 'blur(16px)'}), ]} />