From da7986c1f9fe7c2876fb85a0a8098a024ffa6c33 Mon Sep 17 00:00:00 2001 From: Alex Johansson Date: Thu, 2 Sep 2021 17:17:24 +0200 Subject: [PATCH] bare minimum to fix lint error on `main` (#555) --- pages/getting_started/index.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pages/getting_started/index.tsx b/pages/getting_started/index.tsx index 343f538d9e..2b711c8e04 100644 --- a/pages/getting_started/index.tsx +++ b/pages/getting_started/index.tsx @@ -14,6 +14,7 @@ import React, { useState, useEffect, useRef } from "react"; import { validJson } from "@lib/jsonUtils"; import TimezoneSelect from "react-timezone-select"; import Text from "@components/ui/Text"; +import ErrorAlert from "@components/ui/alerts/Error"; import dayjs from "dayjs"; import utc from "dayjs/plugin/utc"; import timezone from "dayjs/plugin/timezone"; @@ -555,6 +556,8 @@ export default function Onboarding(props: OnboardingProps) { Step {currentStep + 1} of {steps.length} + {error && } +
{steps.map((s, index) => { return index <= currentStep ? (