Frontend update tsconfig to allow unused variables

pull/3/head
TZGyn 2 years ago
parent ee8d72d7dc
commit 6c9c9384cc
Signed by: TZGyn
GPG Key ID: 122EAF77AE81FD4A

@ -25,7 +25,6 @@ export default function Dashboard() {
}) })
const data = (await response.json()).shorteners as Shortener[] const data = (await response.json()).shorteners as Shortener[]
console.log(isLoading)
setShorteners(data) setShorteners(data)
setIsLoading(false) setIsLoading(false)

@ -16,8 +16,8 @@
/* Linting */ /* Linting */
"strict": true, "strict": true,
"noUnusedLocals": true, // "noUnusedLocals": true,
"noUnusedParameters": true, // "noUnusedParameters": true,
"noFallthroughCasesInSwitch": true, "noFallthroughCasesInSwitch": true,
"baseUrl": ".", "baseUrl": ".",
"paths": { "paths": {

Loading…
Cancel
Save