Skip to content

Commit 556e49c

Browse files
committed
chore(deps): update various deps
1 parent f35f667 commit 556e49c

File tree

4 files changed

+159
-161
lines changed

4 files changed

+159
-161
lines changed

components/Converter.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,6 @@ const Converter = ({
154154
`}
155155
>
156156
<TextBox
157-
key={config.name}
158157
title={config.name}
159158
language={"yaml"}
160159
code={parsedConfigs ? parsedConfigs[key] ?? "" : ""}

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"start": "next start"
1010
},
1111
"dependencies": {
12-
"@fortawesome/fontawesome-free": "6.4.0",
13-
"@fortawesome/fontawesome-svg-core": "6.4.0",
14-
"@fortawesome/free-solid-svg-icons": "6.4.0",
12+
"@fortawesome/fontawesome-free": "6.4.2",
13+
"@fortawesome/fontawesome-svg-core": "6.4.2",
14+
"@fortawesome/free-solid-svg-icons": "6.4.2",
1515
"@fortawesome/react-fontawesome": "0.2.0",
1616
"@js.properties/properties": "0.5.4",
1717
"@microlink/react-json-view": "^1.22.2",
@@ -27,21 +27,21 @@
2727
"toml": "3.0.0",
2828
"x2js": "3.4.4",
2929
"xml-js": "1.6.11",
30-
"yaml": "2.2.1"
30+
"yaml": "2.3.2"
3131
},
3232
"devDependencies": {
3333
"@types/node": "18.15.11",
34-
"@types/prismjs": "1.26.0",
35-
"@types/react": "18.0.31",
36-
"@types/styled-components": "5.1.26",
34+
"@types/prismjs": "1.26.1",
35+
"@types/react": "18.2.28",
36+
"@types/styled-components": "5.1.28",
3737
"babel-plugin-macros": "3.1.0",
38-
"eslint": "8.37.0",
38+
"eslint": "8.51.0",
3939
"eslint-config-next": "12.3.4",
4040
"prettier": "2.8.7",
41-
"tailwindcss": "3.3.1",
42-
"ts-json-schema-generator": "1.2.0",
41+
"tailwindcss": "3.3.3",
42+
"ts-json-schema-generator": "1.3.0",
4343
"ts-node": "10.9.1",
44-
"twin.macro": "3.3.0",
44+
"twin.macro": "3.4.0",
4545
"typescript": "4.8.4"
4646
},
4747
"babelMacros": {

pages/index.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ function Home() {
2525
>
2626
<p css={tw`text-lg text-brightblue`}>Introducing the all new</p>
2727
<div css={tw`text-white text-center space-y-12`}>
28-
<p css={tw`text-5xl font-bold overflow-hidden`}>HelpChat Toolbox Beta™</p>
28+
<p css={tw`text-5xl font-bold overflow-hidden`}>
29+
HelpChat Toolbox Beta™
30+
</p>
2931
<p css={tw`text-base text-lightgray`}>
3032
A collection of tools and solutions you might find useful for you
3133
and your server.
@@ -72,8 +74,8 @@ function Home() {
7274

7375
function toolsToCard(tools: ToolboxTool[]) {
7476
return tools.map((tool) => (
77+
// eslint-disable-next-line react/jsx-key
7578
<ToolboxCard
76-
key={tool.short}
7779
name={tool.name}
7880
icon={tool.icon}
7981
description={tool.description}

0 commit comments

Comments
 (0)