diff --git a/_inc/client/my-plan/checklist-progress-card/index.js b/_inc/client/my-plan/checklist-progress-card/index.js index 392caec01bfeb..fb17079118be2 100644 --- a/_inc/client/my-plan/checklist-progress-card/index.js +++ b/_inc/client/my-plan/checklist-progress-card/index.js @@ -15,9 +15,6 @@ import QueryChecklistProgress from 'components/data/query-checklist-progress'; import { getSiteRawUrl } from 'state/initial-state'; import { getTasks } from 'state/checklist/selectors'; -// Style imports are unused -// import './style.scss'; - function ChecklistProgressCard( { completed, total, siteSlug } ) { return ( diff --git a/_inc/client/my-plan/checklist-progress-card/progress-bar/index.js b/_inc/client/my-plan/checklist-progress-card/progress-bar/index.js index 2ad1e8c2a476e..6a61e4027d69f 100644 --- a/_inc/client/my-plan/checklist-progress-card/progress-bar/index.js +++ b/_inc/client/my-plan/checklist-progress-card/progress-bar/index.js @@ -10,12 +10,6 @@ import classnames from 'classnames'; */ import ScreenReaderText from './screen-reader-text'; -/** - * Style dependencies - */ -// Unused in current build system -// import './style.scss'; - export default class ProgressBar extends PureComponent { static defaultProps = { total: 100, diff --git a/_inc/client/my-plan/checklist-progress-card/progress-bar/screen-reader-text/index.js b/_inc/client/my-plan/checklist-progress-card/progress-bar/screen-reader-text/index.js index 39772042e5084..18e9695af6388 100644 --- a/_inc/client/my-plan/checklist-progress-card/progress-bar/screen-reader-text/index.js +++ b/_inc/client/my-plan/checklist-progress-card/progress-bar/screen-reader-text/index.js @@ -3,12 +3,6 @@ */ import React from 'react'; -/** - * Style dependencies - */ -// Unused in current build system -// import './style.scss'; - export default function ScreenReaderText( { children } ) { return { children }; }