From e8843ded5bf1f3d97b735ffe8f8553de46f9b18b Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Fri, 2 Jun 2023 15:01:04 -0500 Subject: Fix a bunch of type errors and add a type-check to the github workflows (#837) * Add yarn type-check * Rename to yarn typecheck * Fix a collection of type errors * Add typecheck to automated tests * add `dist` to exluded folders tsconfig --------- Co-authored-by: Ansh Nanda --- src/view/com/util/BlurView.web.tsx | 1 + 1 file changed, 1 insertion(+) (limited to 'src/view/com/util/BlurView.web.tsx') diff --git a/src/view/com/util/BlurView.web.tsx b/src/view/com/util/BlurView.web.tsx index 5267e6ade..d1fb4665f 100644 --- a/src/view/com/util/BlurView.web.tsx +++ b/src/view/com/util/BlurView.web.tsx @@ -15,6 +15,7 @@ export const BlurView = ({ }: React.PropsWithChildren) => { // @ts-ignore using an RNW-specific attribute here -prf let blur = `blur(${blurAmount || 10}px` + // @ts-ignore using an RNW-specific attribute here -prf style = addStyle(style, {backdropFilter: blur, WebkitBackdropFilter: blur}) if (blurType === 'dark') { style = addStyle(style, styles.dark) -- cgit 1.4.1