Skip to content

Commit

Permalink
fix errors (#301)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkSackerberg authored Jan 21, 2025
1 parent 1661ba4 commit d014156
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 42 deletions.
114 changes: 78 additions & 36 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/components/products/Grid.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Link from 'next/link'
import { IconWithName } from './IconWithName'
import { products as allProducts } from './index'
import Link from 'next/link';
import { IconWithName } from './IconWithName';
import { products as allProducts } from './index';

export function Grid({
onClick,
Expand Down
6 changes: 3 additions & 3 deletions src/components/products/sugar/index.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { CommandLineIcon } from '@heroicons/react/24/solid'
import { Hero } from './Hero'
import { CommandLineIcon } from '@heroicons/react/24/solid';
import { Hero } from './Hero';

export const sugar = {
name: 'Sugar',
headline: 'Create Candy Machines easily',
description: 'Create Candy Machines easily',
navigationMenuCatergory: 'Dev Tools',
path: '/candy-machine/sugar',
path: 'candy-machine/sugar',
icon: <CommandLineIcon />,
github: 'https://github.com/metaplex-foundation/sugar',
className: 'accent-sky',
Expand Down

0 comments on commit d014156

Please sign in to comment.