From 42da3f1c0c3dc0c8c2a77c9fecdcab9c3ca0c3a2 Mon Sep 17 00:00:00 2001 From: kyranjamie Date: Wed, 13 May 2020 17:47:52 +0200 Subject: [PATCH] fix: error thrown using jsx'd style name --- packages/ui/src/input/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/src/input/index.tsx b/packages/ui/src/input/index.tsx index 37769df..489efc6 100755 --- a/packages/ui/src/input/index.tsx +++ b/packages/ui/src/input/index.tsx @@ -39,7 +39,7 @@ export const Input = forwardRef((props, ref) => { aria-disabled={formControl.isDisabled} aria-describedby={ariaDescribedby} textStyle="body.small" - style={{ '-webkit-appearance': 'none', ...style }} + style={{ WebkitAppearance: 'none', ...style }} {...(inputStyleProps as any)} {...rest} />