Skip to content

Commit 31e574c

Browse files
committed
fix: Remove junk params from noscript tag
1 parent 5cfd274 commit 31e574c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/impl/gumlet-image.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export function GumletImage(props) {
1919
return <React.Fragment>
2020
<Tag {...imageProps} {...omit(props, USED_PARAMS)} className={className ? `qt-image ${className}` : 'qt-image'} />
2121
<noscript>
22-
<Tag src={`https://${imageCDN}/${image.path(aspectRatio, {...imgParams, w: 1200})}`} {...omit(props, USED_PARAMS)} />
22+
<img src={`https://${imageCDN}/${image.path(aspectRatio, {...imgParams, w: 1200})}`} alt={props.alt || ""} />
2323
</noscript>
2424
</React.Fragment>
2525
}

0 commit comments

Comments
 (0)