Skip to content

Commit 77789b1

Browse files
fix: eslint codebase issues
1 parent c1c1fb2 commit 77789b1

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

packages/react-renderer-demo/src/components/common/doc-link.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const NextLinkComposed = React.forwardRef(function NextLinkComposed(props
1616
<NextLink
1717
style={{
1818
textDecoration: 'none',
19-
color: 'inherit'
19+
color: 'inherit',
2020
}}
2121
href={to}
2222
prefetch={prefetch}

packages/react-renderer-demo/src/components/component-example.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,10 @@ const ComponentExample = ({ variants, schema, activeMapper, component, schemaVar
251251
onClick={() => push(`${pathname}?mapper=${mapper}${activeSchema ? `&schema=${activeSchema}` : ''}`)}
252252
className={clsx(classes.tab, { active: activeMapper === mapper })}
253253
label={
254-
<DocLink style={{ textDecoration: 'none', color: 'inherit' }} href={`${pathname}?mapper=${mapper}${activeSchema ? `&schema=${activeSchema}` : ''}`}>
254+
<DocLink
255+
style={{ textDecoration: 'none', color: 'inherit' }}
256+
href={`${pathname}?mapper=${mapper}${activeSchema ? `&schema=${activeSchema}` : ''}`}
257+
>
255258
<a href={`${pathname}?mapper=${mapper}${activeSchema ? `&schema=${activeSchema}` : ''}`} className={classes.tabLink}>
256259
{title}
257260
</a>

0 commit comments

Comments
 (0)