diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 2b7d6907..bfd9dfce 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -49,4 +49,3 @@ jobs: NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET='${{ secrets.NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET }}' NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID='${{ secrets.NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID }}' NEXT_PUBLIC_FIREBASE_APP_ID='${{ secrets.NEXT_PUBLIC_FIREBASE_APP_ID }}' - diff --git a/jest.config.js b/jest.config.js index cb3ae117..2a8312fa 100644 --- a/jest.config.js +++ b/jest.config.js @@ -28,6 +28,6 @@ module.exports = { '!**/node_modules/**', '!**/.storybook/**', '!**/tailwind.config.ts', - '!**/*.stories.tsx' - ] + '!**/*.stories.tsx', + ], } diff --git a/packages/design-system/src/components/DataTable/DataTable.tsx b/packages/design-system/src/components/DataTable/DataTable.tsx index 2ff65b6e..e709eef5 100644 --- a/packages/design-system/src/components/DataTable/DataTable.tsx +++ b/packages/design-system/src/components/DataTable/DataTable.tsx @@ -13,6 +13,7 @@ import { getCoreRowModel, useReactTable, } from '@tanstack/react-table' +import { cn } from '../../utils/className' import { Table, TableBody, @@ -21,7 +22,6 @@ import { TableHeader, TableRow, } from '../Table' -import { cn } from '../../utils/className' interface DataTableProps { columns: Array> diff --git a/packages/design-system/src/molecules/DashboardLayout/DashboardLayout.tsx b/packages/design-system/src/molecules/DashboardLayout/DashboardLayout.tsx index bdc8ff40..ae4523ea 100644 --- a/packages/design-system/src/molecules/DashboardLayout/DashboardLayout.tsx +++ b/packages/design-system/src/molecules/DashboardLayout/DashboardLayout.tsx @@ -6,8 +6,8 @@ // SPDX-License-Identifier: MIT // 'use client' -import { type ReactNode } from 'react' import { Menu } from 'lucide-react' +import { type ReactNode } from 'react' import { Button } from '../../components/Button' import { cn } from '../../utils/className' import { useOpenState } from '../../utils/useOpenState' diff --git a/tsconfig.json b/tsconfig.json index 063611de..ad58278d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,7 +19,7 @@ } ], "paths": { - "@/*": ["./*"], + "@/*": ["./*"] } }, "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],