Skip to content

Commit

Permalink
update var name
Browse files Browse the repository at this point in the history
  • Loading branch information
john-rock committed Oct 1, 2024
1 parent 8590932 commit e1cf65c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/src/components/quickstartGuideList/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ function QuickstartList({ quickstartData }) {

// Set the featured guides that will show as CTAs in the hero section
// The value of the tag must match a tag in the frontmatter of the guides in order for the filter to apply after clicking
const featuredGuides = [
const heroCTAs = [
{
title: 'Quickstart Guides',
value: 'Quickstart'
Expand Down Expand Up @@ -140,7 +140,7 @@ function QuickstartList({ quickstartData }) {
showGraphic={false}
customStyles={{ marginBottom: 0 }}
classNames={styles.quickstartHero}
callToActions={featuredGuides.map(guide => ({
callToActions={heroCTAs.map(guide => ({
title: guide.title,
href: guide.href,
onClick: () => handleCallToActionClick(guide.value),
Expand Down

0 comments on commit e1cf65c

Please sign in to comment.