Skip to content

Commit b31333a

Browse files
committed
Fix some warnings.
1 parent 48adcfb commit b31333a

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

website/docusaurus.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,20 +85,20 @@ const config: Config = {
8585
// },
8686
// {to: '/blog', label: 'Blog', position: 'left'},
8787
{
88-
docId: 'support',
88+
id: 'support',
8989
to: '/support',
9090
label: 'Support',
9191
position: 'left',
9292
},
9393
{
9494
// type: 'doc',
95-
docId: 'about',
95+
id: 'about',
9696
to: '/about',
9797
label: 'About',
9898
position: 'left',
9999
},
100100
{
101-
docId: 'sponsor',
101+
id: 'sponsor',
102102
to: '/sponsor',
103103
label: 'Sponsor',
104104
position: 'right',

website/src/pages/sponsor.mdx

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,19 @@ In order to dedicate resources to maintaining and improving the CSpell suite of
4242
- Small Business [€10.00 EUR / month](https://buy.stripe.com/28ocOLenXdCy1oc6oo)
4343
- Business Subscription [€100.00 EUR / month](https://buy.stripe.com/8wM01Z0x7cyu5Es9AC)
4444

45-
**GitHub Sponsors**
45+
**GitHub Sponsor**
4646

47-
- [![GitHub Sponsors](https://img.shields.io/badge/-black?style=social&logo=githubsponsors&label=GitHub%20Sponsor%3A%20Street%20Side%20Software)](https://github.com/sponsors/streetsidesoftware)
47+
- [![GitHub Sponsor](https://img.shields.io/badge/-black?style=social&logo=githubsponsors&label=GitHub%20Sponsor%3A%20Street%20Side%20Software)](https://github.com/sponsors/streetsidesoftware)
4848

49-
{buttons.map(buyButtonId => <StripeBuyButton buyButtonId={buyButtonId} />)}
49+
{buttons.map((buyButtonId, key) => <StripeBuyButton key={key} buyButtonId={buyButtonId} />)}
50+
51+
---
5052

5153
<iframe
5254
src="https://github.com/sponsors/streetsidesoftware/card"
5355
title="Sponsor streetsidesoftware"
54-
height="225"
55-
width="600"
56+
width="100%"
5657
style={{ border: 0 }}
5758
></iframe>
59+
60+
---

0 commit comments

Comments
 (0)