diff --git a/pages/getting_started/index.tsx b/pages/getting_started/index.tsx
index 343f538d..2b711c8e 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 ? (