Bläddra i källkod

updated url and fixed a key issue

tonyboylehub 5 månader sedan
förälder
incheckning
5e39cc3ae4
2 ändrade filer med 4 tillägg och 3 borttagningar
  1. 3 2
      src/components/products/GridAllProducts.jsx
  2. 1 1
      src/pages/bubblegum-v2/index.md

+ 3 - 2
src/components/products/GridAllProducts.jsx

@@ -1,3 +1,4 @@
+import React from 'react';
 import { Grid } from './Grid';
 import { productCategories } from './index';
 
@@ -7,7 +8,7 @@ export function MarkdocGrid() {
       {productCategories.map((item, index) => {
 
         return (
-          <>
+          <React.Fragment key={index}>
             <h2 key={index} className="mb-4 mt-8 text-2xl font-bold">
               {productCategories[index]}
             </h2>
@@ -17,7 +18,7 @@ export function MarkdocGrid() {
               menuItem={productCategories[index]}
               
             />
-          </>
+          </React.Fragment>
         )
       })}
     </div>

+ 1 - 1
src/pages/bubblegum-v2/index.md

@@ -8,7 +8,7 @@ Bubblegum V2 is the latest iteration of the Metaplex Protocol program for creati
 
 {% quick-links %}
 
-{% quick-link title="Getting Started" icon="InboxArrowDown" href="/bubblegum-v2/getting-started" description="Find the language or library of your choice and get started with compressed NFTs." /%}
+{% quick-link title="Getting Started" icon="InboxArrowDown" href="/bubblegum-v2/sdk" description="Find the language or library of your choice and get started with compressed NFTs." /%}
 
 {% quick-link title="API reference" icon="CodeBracketSquare" href="https://mpl-bubblegum.typedoc.metaplex.com/" target="_blank" description="Looking for something specific? Have a peak at our API References and find your answer." /%}