Skip to content

Commit

Permalink
fix: static link
Browse files Browse the repository at this point in the history
  • Loading branch information
revolunet committed Dec 30, 2024
1 parent 5907f7a commit 40396d4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 85 deletions.
49 changes: 0 additions & 49 deletions .github/workflows/deploy.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .github/workflows/playwright.yml

This file was deleted.

5 changes: 3 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const CollectionCard = ({ collection }: { collection: AlbertCollection }) => (
</>
}
linkProps={{
href: `/collection?id=${collection.id}`,
href: `/collection.html?id=${collection.id}`,
}}
size="small"
title={collection.name}
Expand Down Expand Up @@ -69,7 +69,8 @@ const Home: NextPage = () => {
name,
token: albertApiKey,
});
router && router.push(`/collection?id=${collectionId}`);
router &&
router.push(`/collection.html?id=${collectionId}`);
}
},
}}
Expand Down

0 comments on commit 40396d4

Please sign in to comment.