Skip to content

Commit 6bcba0c

Browse files
committed
Fix deploy
1 parent 084cf92 commit 6bcba0c

File tree

6 files changed

+7
-12
lines changed

6 files changed

+7
-12
lines changed

.eslintrc

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@
55
"plugin:prettier/recommended"
66
],
77
"rules": {
8-
"@typescript-eslint/no-unused-vars": [
8+
"no-unused-vars": [
99
"error",
10-
{ "argsIgnorePattern": "^_" }
11-
],
12-
"prettier/prettier": "error"
10+
{ "vars": "all", "args": "none", "ignoreRestSiblings": true }
11+
]
1312
}
1413
}

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# These are supported funding model platforms
22

33
github: lucasm
4-
patreon: #lucasm
4+
patreon: findto
55
open_collective: # 100 stars
66
ko_fi: findto
77
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel

.vscode/settings.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

components/CookiesPopup/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
import { useEffect, useState } from 'react'
44
import styles from './CookiesPopup.module.css'
55
import Link from 'next/link'
6-
import { useLocale, useTranslations } from 'next-intl'
6+
import { useTranslations } from 'next-intl'
77

88
const CookiesPopup = () => {
9-
const locale = useLocale()
109
const t = useTranslations('t')
1110
const [isVisible, setIsVisible] = useState<boolean>(false)
1211
const [isAccepted, setIsAccepted] = useState<boolean>(() => {

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"@types/react-dom": "^18.3.0",
2929
"@types/react-speech-recognition": "^3.9.5",
3030
"autoprefixer": "^10.4.20",
31-
"eslint": "8.23.0",
31+
"eslint": "^8.23.0",
3232
"eslint-config-next": "^14.2.5",
3333
"postcss": "^8.4.47",
3434
"prettier": "2.7.1",

0 commit comments

Comments
 (0)