Skip to content

Commit a15a1ae

Browse files
committed
fix: remove unnecessary id attribute from codeblock
1 parent 992d5ab commit a15a1ae

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@interledger/docs-design-system",
3-
"version": "0.6.0",
3+
"version": "0.6.1",
44
"type": "module",
55
"description": "Shared styles and components used across all Interledger Starlight documentation sites",
66
"exports": {

src/components/CodeBlock.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
const { title, id, class: className } = Astro.props;
2+
const { title, class: className } = Astro.props;
33
---
4-
<div class:list={['codeblock', className]} id={id}>
4+
<div class:list={['codeblock', className]}>
55
<p>{title}</p>
66
<slot />
77
</div>

0 commit comments

Comments
 (0)