From a15a1ae553bcfc0f4ac35021b7e5901d115fa549 Mon Sep 17 00:00:00 2001 From: Chen Hui Jing <1461498+huijing@users.noreply.github.com> Date: Tue, 17 Dec 2024 17:11:38 +0800 Subject: [PATCH] fix: remove unnecessary id attribute from codeblock --- package.json | 2 +- src/components/CodeBlock.astro | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 68264b9..69a38a8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@interledger/docs-design-system", - "version": "0.6.0", + "version": "0.6.1", "type": "module", "description": "Shared styles and components used across all Interledger Starlight documentation sites", "exports": { diff --git a/src/components/CodeBlock.astro b/src/components/CodeBlock.astro index 30a50fc..42bd866 100644 --- a/src/components/CodeBlock.astro +++ b/src/components/CodeBlock.astro @@ -1,7 +1,7 @@ --- -const { title, id, class: className } = Astro.props; +const { title, class: className } = Astro.props; --- -
{title}