Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(examples): next/future/image -> next/image #42794

Merged
merged 1 commit into from Nov 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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