eslint: scream if I try putting a JS comment in a JSX text node

This commit is contained in:
Alex Gleason 2022-04-10 19:59:53 -05:00
parent 75fc0bf904
commit f316dac83e
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View file

@ -30,7 +30,7 @@ const SvgIcon: React.FC<ISvgIcon> = ({ src, alt, size = 24, className }): JSX.El
loader={loader} loader={loader}
data-testid='svg-icon' data-testid='svg-icon'
> >
/* If the fetch fails, fall back to displaying the loader */ {/* If the fetch fails, fall back to displaying the loader */}
{loader} {loader}
</InlineSVG> </InlineSVG>
); );