Skip to content

Commit e7dd7e1

Browse files
authored
Revert "remove unused failing eslint (#894)"
This reverts commit 29f96d1.
1 parent f83f04c commit e7dd7e1

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

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

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

69
export default async function CustomersTable({
710
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-
5+
import { LatestInvoice } from '@/app/lib/definitions';
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,6 +1,7 @@
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';
45

56
// This component is representational only.
67
// For data visualization UI, check out:

0 commit comments

Comments
 (0)