feat: Lint paragraphs except in test files & fix
Signed-off-by: Carlos Esteban Lopez <lcarlosesteb@vmware.com>
This commit is contained in:
committed by
Carlos Lopez
parent
8de0276086
commit
e75f39e603
@@ -15,6 +15,7 @@
|
||||
*/
|
||||
|
||||
import { createStyles, makeStyles, useTheme } from '@material-ui/core';
|
||||
import Typography from '@material-ui/core/Typography';
|
||||
import React from 'react';
|
||||
import {
|
||||
Bar,
|
||||
@@ -91,7 +92,7 @@ export const BuildTimeline = ({
|
||||
width,
|
||||
}: BuildTimelineProps) => {
|
||||
const theme = useTheme();
|
||||
if (!targets.length) return <p>No Targets</p>;
|
||||
if (!targets.length) return <Typography>No Targets</Typography>;
|
||||
|
||||
const data = getTimelineData(targets);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user