Remove eslint ignore from SetList

This commit is contained in:
Brandon Presley 2022-12-12 17:26:58 +13:00
parent 1818e39f41
commit c3b14e901d
1 changed files with 2 additions and 2 deletions

View File

@ -39,8 +39,8 @@ export default function SetList() {
setEnd(false)
const first = newSets[0]
if (!first) return
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const {id, ...newSet} = first
const newSet = {...first}
delete newSet.id
setSet(newSet)
}, [])