Skip to content

Commit 3b91b1b

Browse files
use img for external images in export build (#37)
1 parent cda6e10 commit 3b91b1b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

game/src/components/past-games/da-image.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { DA, DA_NAME } from "@/lib/constants";
2-
import Image from "next/image";
32

43
interface DAImageProps {
54
da: DA;
@@ -10,7 +9,7 @@ interface DAImageProps {
109
export const DAImage = (props: DAImageProps) => {
1110
const { da, width = 20, height = 20 } = props;
1211
return (
13-
<Image
12+
<img
1413
className="rounded-full"
1514
src={`https://assets.stackrlabs.xyz/${da}.png`}
1615
alt={DA_NAME[da]}

0 commit comments

Comments
 (0)