Skip to content

Commit

Permalink
Fix lint again
Browse files Browse the repository at this point in the history
  • Loading branch information
styfle committed Feb 7, 2022
1 parent 41e5820 commit a252e6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/next/client/image.tsx
Expand Up @@ -331,7 +331,7 @@ export default function Image({
const allSizes = [...c.deviceSizes, ...c.imageSizes].sort((a, b) => a - b)
const deviceSizes = c.deviceSizes.sort((a, b) => a - b)
return { ...c, allSizes, deviceSizes }
}, [configContext, imageConfigDefault])
}, [configContext])

let rest: Partial<ImageProps> = all
let layout: NonNullable<LayoutValue> = sizes ? 'responsive' : 'intrinsic'
Expand Down

0 comments on commit a252e6c

Please sign in to comment.