Skip to content

Commit f5031a4

Browse files
chore(examples): next/future/image -> next/image (vercel#42794)
1 parent 872c8d5 commit f5031a4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Diff for: examples/cms-sanity/components/avatar.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Image from 'next/future/image'
1+
import Image from 'next/image'
22
import { urlForImage } from '../lib/sanity'
33

44
export default function Avatar({ name, picture }) {

Diff for: examples/cms-sanity/components/cover-image.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import cn from 'classnames'
2-
import Image from 'next/future/image'
2+
import Image from 'next/image'
33
import Link from 'next/link'
44
import { urlForImage } from '../lib/sanity'
55

Diff for: examples/with-sfcc/components/Header.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Image from 'next/future/image'
1+
import Image from 'next/image'
22

33
export default function Header({ scrollHandler }) {
44
return (

Diff for: examples/with-sfcc/components/ProductCard.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Image from 'next/future/image'
1+
import Image from 'next/image'
22
import Link from 'next/link'
33
import { useState } from 'react'
44

Diff for: examples/with-sfcc/pages/products/[slug].js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Image from 'next/future/image'
1+
import Image from 'next/image'
22
import getProducts from '../../sfcc.js'
33

44
export default function Product({ product }) {

0 commit comments

Comments
 (0)