From e2eff790153f3835e916e314924513a56ffdd743 Mon Sep 17 00:00:00 2001 From: Adam Duro Date: Fri, 6 May 2022 17:05:26 -0700 Subject: [PATCH] fix: linearGradient props are incorrectly spelled The code expects the property to be "locations" with an "s", but the props do not include the "s" --- src/components/primitives/Box/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/primitives/Box/types.ts b/src/components/primitives/Box/types.ts index b5b0994b2..ab2be4277 100644 --- a/src/components/primitives/Box/types.ts +++ b/src/components/primitives/Box/types.ts @@ -14,7 +14,7 @@ export interface ILinearGradientProps { colors: Array; start?: Array; end?: Array; - location?: Array; + locations?: Array; }; }