aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/pages/instant/screenshots.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/pages/instant/screenshots.tsx')
-rw-r--r--packages/website/ts/pages/instant/screenshots.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/website/ts/pages/instant/screenshots.tsx b/packages/website/ts/pages/instant/screenshots.tsx
index fe9ca03b9..7dcf17fd1 100644
--- a/packages/website/ts/pages/instant/screenshots.tsx
+++ b/packages/website/ts/pages/instant/screenshots.tsx
@@ -28,7 +28,7 @@ export const Screenshots = (props: ScreenshotsProps) => {
return (
<Container backgroundColor={colors.instantPrimaryBackground} className="py3 flex justify-center">
{_.map(images, image => {
- return <img className="px1" width="300px" height="420px" src={image} />;
+ return <img className="px1 flex-none" width="300px" height="420px" src={image} key={image} />;
})}
</Container>
);