Skip to content
This repository was archived by the owner on Oct 17, 2025. It is now read-only.

Commit f157f01

Browse files
committed
loading eager を lazy に直した
1 parent 73dbc83 commit f157f01

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • workspaces/app/src/foundation/components

workspaces/app/src/foundation/components/Image.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ type Props = {
2020
width: number | string;
2121
} & JSX.IntrinsicElements['img'];
2222

23-
export const Image: React.FC<Props> = ({ height, loading = 'eager', objectFit, width, ...rest }) => {
23+
export const Image: React.FC<Props> = ({ height, loading = 'lazy', objectFit, width, ...rest }) => {
2424
return <_Image {...rest} $height={height} $objectFit={objectFit} $width={width} loading={loading} />;
2525
};

0 commit comments

Comments
 (0)