Skip to content
This repository has been archived by the owner on Dec 8, 2023. It is now read-only.

Commit

Permalink
fix: update incorrect import
Browse files Browse the repository at this point in the history
  • Loading branch information
aswanson-nr committed Jan 24, 2022
1 parent 35df4c9 commit 78949fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/instant-observability.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import IOSeo from '../components/IOSeo';
import { css } from '@emotion/react';
import SegmentedControl from '../components/SegmentedControl';
import Overlay from '../components/Overlay';
import PackTile from '../components/PackTile';
import QuickstartTile from '../components/QuickstartTile';
import IOBanner from '../components/IOBanner';
import {
SearchInput,
Expand Down Expand Up @@ -538,7 +538,7 @@ const QuickstartsPage = ({ data, location }) => {
`};
`}
>
<PackTile
<QuickstartTile
id={RESERVED_QUICKSTART_IDS.BUILD_YOUR_OWN_QUICKSTART}
css={css`
background-color: var(--tertiary-background-color);
Expand All @@ -550,7 +550,7 @@ const QuickstartsPage = ({ data, location }) => {
summary="Can't find a quickstart with what you need? Check out our README and build your own."
/>
{filteredQuickstarts.map((pack) => (
<PackTile
<QuickstartTile
key={pack.id}
view={view}
featured={pack.keywords?.includes('featured')}
Expand Down

0 comments on commit 78949fa

Please sign in to comment.