File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed
examples/nextjs-shadcn/src/app
packages/react-ui-shadcn/src/components Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 11import { useRelativeDate } from "./relative-date" ;
2- import Image from "next/image" ;
32import React from "react" ;
43import {
54 CommentIcon ,
@@ -114,7 +113,8 @@ export function Cast(props: {
114113 < div className = "relative min-w-[48px]" >
115114 < div >
116115 < div className = "pt-1" >
117- < Image
116+ { /* eslint-disable-next-line */ }
117+ < img
118118 alt = ""
119119 className = "rounded-full w-[48px] h-[48px]"
120120 src = {
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ import {
1111} from "components/ui/command" ;
1212import { Popover , PopoverContent , PopoverTrigger } from "components/ui/popover" ;
1313import { Channel } from "@mod-protocol/farcaster" ;
14- import Image from "next/image" ;
1514import { CaretDownIcon } from "@radix-ui/react-icons" ;
1615
1716type Props = {
@@ -57,7 +56,7 @@ export function ChannelPicker(props: Props) {
5756 aria-expanded = { open }
5857 type = "button"
5958 >
60- < Image
59+ < img
6160 src = { props . value . image ?? "" }
6261 alt = { props . value . name }
6362 width = { 24 }
@@ -85,7 +84,7 @@ export function ChannelPicker(props: Props) {
8584 className = "cursor-pointer"
8685 onSelect = { ( ) => handleSelect ( channel ) }
8786 >
88- < Image
87+ < img
8988 src = { channel . image ?? "" }
9089 alt = { channel . name }
9190 width = { 24 }
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ import {
1111} from "components/ui/command" ;
1212import { Popover , PopoverContent , PopoverTrigger } from "components/ui/popover" ;
1313import { ModManifest } from "@mod-protocol/core" ;
14- import Image from "next/image" ;
1514
1615type Props = {
1716 miniapps : ModManifest [ ] ;
@@ -58,7 +57,7 @@ export function CreationMiniAppsSearch(props: Props) {
5857 className = "cursor-pointer"
5958 onSelect = { handleSelect }
6059 >
61- < Image
60+ < img
6261 height = { 24 }
6362 width = { 24 }
6463 alt = { miniApp . name }
You can’t perform that action at this time.
0 commit comments