chore: remove unused imports and args (#271)

This commit is contained in:
Samuel Gunter
2024-10-05 00:20:59 -05:00
committed by GitHub
parent 15fc3699cf
commit 99c982d6e1
3 changed files with 2 additions and 4 deletions

View File

@@ -72,7 +72,7 @@ export default function AutoLoad({ addRows }: Props): JSX.Element | null {
<div>
{status !== AutoLoadStatus.ERROR && (
<div className=''>
{Array.from({ length: 8 }).map((_, i) => (
{Array.from({ length: 8 }).map(() => (
<Skeleton style={{ marginBottom: 30 }} height={40} />
))}
</div>