Skip to content

Commit 29f96d1

Browse files
authored
remove unused failing eslint (#894)
1 parent c5f12f9 commit 29f96d1

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

dashboard/starter-example/app/ui/customers/table.tsx

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
import Image from 'next/image';
22
import { lusitana } from '@/app/ui/fonts';
33
import Search from '@/app/ui/search';
4-
import {
5-
CustomersTableType,
6-
FormattedCustomersTable,
7-
} from '@/app/lib/definitions';
4+
import { FormattedCustomersTable } from '@/app/lib/definitions';
85

96
export default async function CustomersTable({
107
customers,

dashboard/starter-example/app/ui/dashboard/latest-invoices.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { ArrowPathIcon } from '@heroicons/react/24/outline';
22
import clsx from 'clsx';
33
import Image from 'next/image';
44
import { lusitana } from '@/app/ui/fonts';
5-
import { LatestInvoice } from '@/app/lib/definitions';
5+
66
export default async function LatestInvoices({
77
latestInvoices,
88
}: {

dashboard/starter-example/app/ui/dashboard/revenue-chart.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { generateYAxis } from '@/app/lib/utils';
22
import { CalendarIcon } from '@heroicons/react/24/outline';
33
import { lusitana } from '@/app/ui/fonts';
4-
import { Revenue } from '@/app/lib/definitions';
54

65
// This component is representational only.
76
// For data visualization UI, check out:

0 commit comments

Comments
 (0)