From 2d5f36c61f5fddc903ea5bc34cabde5189d5794f Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Mon, 23 May 2022 13:41:32 -0700 Subject: [PATCH] Fix typo in var name --- packages/web/components/templates/onboarding/01.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/web/components/templates/onboarding/01.tsx b/packages/web/components/templates/onboarding/01.tsx index f855a594d..e78c504eb 100644 --- a/packages/web/components/templates/onboarding/01.tsx +++ b/packages/web/components/templates/onboarding/01.tsx @@ -1,8 +1,8 @@ -import {SelectionOptionCard} from './SelectOption' +import { SelectionOptionCard } from './SelectOption' import OnboardingLayout2 from '../OnboardingLayout2' -import {Box, HStack, VStack} from '../../elements/LayoutPrimitives' +import { Box, HStack, VStack } from '../../elements/LayoutPrimitives' -const articlecDetails = [ +const articleDetails = [ { title: 'Winnebago Electric RV Concept', author: 'Omnivore', @@ -65,7 +65,7 @@ const OnboardingPage1 = () => { gridTemplateColumns: '50% 50%', }, }}> - {articlecDetails.map(({ title, author, originText, description, image, labels }, idx) => ( + {articleDetails.map(({ title, author, originText, description, image, labels }, idx) => (