Skip to content

Commit

Permalink
fix: take care of linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dysmento committed Dec 7, 2023
1 parent 3e52fa4 commit 2f20361
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { render } from '@redwoodjs/testing/web'

import { Loading, Empty, Failure, Success } from './ReportingPeriodCell'
import { standard } from './ReportingPeriodCell.mock'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { render } from '@redwoodjs/testing/web'

import { Loading, Empty, Failure, Success } from './ReportingPeriodsCell'
import { standard } from './ReportingPeriodsCell.mock'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { MetaTags } from '@redwoodjs/web'

import ReportingPeriodsCell from 'src/components/ReportingPeriodsCell'
// import ReportingPeriodsCell from 'src/components/ReportingPeriodsCell'

const ReportingPeriodsPage = () => {
return (
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/UploadTemplatePage/UploadTemplatePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Form, FileField, HiddenField, Submit } from '@redwoodjs/forms'
import { Link, routes } from '@redwoodjs/router'
import { MetaTags } from '@redwoodjs/web'

import ReportingPeriodCell from 'src/components/ReportingPeriodCell'
// import ReportingPeriodCell from 'src/components/ReportingPeriodCell'

const UploadTemplatePage = ({ id }) => {
const onSubmit = (data) => {
Expand Down

0 comments on commit 2f20361

Please sign in to comment.