Skip to content

Commit

Permalink
Merge pull request #225 from RobinNagpal/sami/categories-page
Browse files Browse the repository at this point in the history
Changed `Simulations` to `Clickable Demos` for Compound
  • Loading branch information
RobinNagpal authored May 20, 2024
2 parents bd4d5aa + 3eb1f19 commit 31126e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/main/TopNav/TopNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function DesktopNavLinks({ space }: { space: Space }) {
return <DesktopNavLink key="simulations" href="/simulations" label="Simulations" />;
}
if (feature.featureName === FeatureName.ClickableDemos) {
return <DesktopNavLink key="clickableDemos" href="/clickable-demos" label="Simulations" />;
return <DesktopNavLink key="clickableDemos" href="/clickable-demos" label="Clickable Demos" />;
}
if (feature.featureName === FeatureName.Timelines) {
return <DesktopNavLink key="timelines" href="/timelines" label="Timelines" />;
Expand Down
2 changes: 1 addition & 1 deletion src/types/features/compoundFeatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const compoundFeatures: FeatureItem[] = [
},

{
featureName: FeatureName.Simulations,
featureName: FeatureName.ClickableDemos,
enabled: true,
details: {
priority: 70,
Expand Down

0 comments on commit 31126e1

Please sign in to comment.