Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/seo/MineralSchema.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interface Props {

const { mineral } = Astro.props;

const url = `https://gemmology.dev/minerals/${mineral.id}`;
const url = `https://gemmology.dev/minerals/${mineral.id}/`;
const imageUrl = `https://gemmology.dev/crystals/${mineral.id}.svg`;

// Build the JSON-LD schema — Schema.org has no Mineral type, so we use Thing
Expand Down Expand Up @@ -80,7 +80,7 @@ const breadcrumbSchema = {
"@type": "ListItem",
"position": 2,
"name": "Gallery",
"item": "https://gemmology.dev/gallery"
"item": "https://gemmology.dev/gallery/"
},
{
"@type": "ListItem",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/knowledge-version.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const KNOWLEDGE_VERSION = 'v1.4.0';
export const KNOWLEDGE_VERSION = 'v1.4.1';

export const KNOWLEDGE_REPO_URL = 'https://github.com/gemmology-dev/gemmology-knowledge';

Expand Down
Loading