commit c96a5d9f6c2733f0d09502c3f1ba27f3f373f833 parent e3c4969e3abde903bd88f0c2dd900a6fdbdba414 Author: MTRNord <mtrnord1@gmail.com> Date: Sun, 2 Jan 2022 00:34:03 +0100 Fix error Diffstat:
| M | pages/post/[id].tsx | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pages/post/[id].tsx b/pages/post/[id].tsx @@ -242,7 +242,7 @@ class Post extends Component<Props, State> { return <></>; } return ( - <a href={url} title={caption} data-src={url}> + <a key={url} href={url} title={caption} data-src={url}> <img alt={caption} title={caption} src={thumbnail_url} /> </a> );