Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Fix ESLint Error defined but never used in Chapter 14" #981

Merged
merged 1 commit into from
Jan 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Revert "remove unused failing eslint (#894)"
This reverts commit 29f96d1.
  • Loading branch information
leerob authored Jan 19, 2025
commit e7dd7e143ff66ed500e82c1b5666a09ab35621c5
5 changes: 4 additions & 1 deletion dashboard/starter-example/app/ui/customers/table.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import Image from 'next/image';
import { lusitana } from '@/app/ui/fonts';
import Search from '@/app/ui/search';
import { FormattedCustomersTable } from '@/app/lib/definitions';
import {
CustomersTableType,
FormattedCustomersTable,
} from '@/app/lib/definitions';

export default async function CustomersTable({
customers,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ArrowPathIcon } from '@heroicons/react/24/outline';
import clsx from 'clsx';
import Image from 'next/image';
import { lusitana } from '@/app/ui/fonts';

import { LatestInvoice } from '@/app/lib/definitions';
export default async function LatestInvoices({
latestInvoices,
}: {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { generateYAxis } from '@/app/lib/utils';
import { CalendarIcon } from '@heroicons/react/24/outline';
import { lusitana } from '@/app/ui/fonts';
import { Revenue } from '@/app/lib/definitions';

// This component is representational only.
// For data visualization UI, check out:
Expand Down
Loading