Skip to content

Commit

Permalink
chore(examples): next/future/image -> next/image (#42794)
Browse files Browse the repository at this point in the history
  • Loading branch information
balazsorban44 committed Nov 11, 2022
1 parent 872c8d5 commit f5031a4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/cms-sanity/components/avatar.js
@@ -1,4 +1,4 @@
import Image from 'next/future/image'
import Image from 'next/image'
import { urlForImage } from '../lib/sanity'

export default function Avatar({ name, picture }) {
Expand Down
2 changes: 1 addition & 1 deletion examples/cms-sanity/components/cover-image.js
@@ -1,5 +1,5 @@
import cn from 'classnames'
import Image from 'next/future/image'
import Image from 'next/image'
import Link from 'next/link'
import { urlForImage } from '../lib/sanity'

Expand Down
2 changes: 1 addition & 1 deletion examples/with-sfcc/components/Header.js
@@ -1,4 +1,4 @@
import Image from 'next/future/image'
import Image from 'next/image'

export default function Header({ scrollHandler }) {
return (
Expand Down
2 changes: 1 addition & 1 deletion examples/with-sfcc/components/ProductCard.js
@@ -1,4 +1,4 @@
import Image from 'next/future/image'
import Image from 'next/image'
import Link from 'next/link'
import { useState } from 'react'

Expand Down
2 changes: 1 addition & 1 deletion examples/with-sfcc/pages/products/[slug].js
@@ -1,4 +1,4 @@
import Image from 'next/future/image'
import Image from 'next/image'
import getProducts from '../../sfcc.js'

export default function Product({ product }) {
Expand Down

0 comments on commit f5031a4

Please sign in to comment.