diff --git a/apps/web/eslint.config.js b/apps/web/eslint.config.js index f38e51436..6786c9186 100644 --- a/apps/web/eslint.config.js +++ b/apps/web/eslint.config.js @@ -191,6 +191,7 @@ export default [js.configs.recommended, { 'object-shorthand': 'error', 'prefer-template': 'error', 'no-unused-vars': 'off', // Handled by @typescript-eslint/no-unused-vars + 'no-undef': 'off', // TypeScript handles this; no-undef doesn't understand TS types (JSX, etc.) 'no-useless-escape': 'error', 'no-prototype-builtins': 'warn', diff --git a/apps/web/index.html b/apps/web/index.html index 643c3db3e..e063419ae 100644 --- a/apps/web/index.html +++ b/apps/web/index.html @@ -7,13 +7,9 @@
Queued requests will be automatically processed when you're back online. You can remove individual requests or clear the entire diff --git a/apps/web/src/components/admin/AdminAuditLogsView.stories.tsx b/apps/web/src/components/admin/AdminAuditLogsView.stories.tsx index 521b0e853..87eee9a53 100644 --- a/apps/web/src/components/admin/AdminAuditLogsView.stories.tsx +++ b/apps/web/src/components/admin/AdminAuditLogsView.stories.tsx @@ -1,4 +1,4 @@ -import type { Meta, StoryObj } from '@storybook/react'; +import type { Meta, StoryObj } from '@storybook/react-vite'; import { AdminAuditLogsView } from './AdminAuditLogsView'; /** diff --git a/apps/web/src/components/admin/AdminDashboardView.stories.tsx b/apps/web/src/components/admin/AdminDashboardView.stories.tsx index db1d69272..fc5439d0f 100644 --- a/apps/web/src/components/admin/AdminDashboardView.stories.tsx +++ b/apps/web/src/components/admin/AdminDashboardView.stories.tsx @@ -1,4 +1,4 @@ -import type { Meta, StoryObj } from '@storybook/react'; +import type { Meta, StoryObj } from '@storybook/react-vite'; import { AdminDashboardView } from './AdminDashboardView'; import { AdminDashboardSkeleton } from './admin-dashboard-view'; import { ToastProvider } from '../../components/feedback/ToastProvider'; diff --git a/apps/web/src/components/admin/AdminModerationView.stories.tsx b/apps/web/src/components/admin/AdminModerationView.stories.tsx index 743c03224..03a0dd7ec 100644 --- a/apps/web/src/components/admin/AdminModerationView.stories.tsx +++ b/apps/web/src/components/admin/AdminModerationView.stories.tsx @@ -1,4 +1,4 @@ -import type { Meta, StoryObj } from '@storybook/react'; +import type { Meta, StoryObj } from '@storybook/react-vite'; import { http, HttpResponse } from 'msw'; import { AdminModerationView } from './AdminModerationView'; import { ToastProvider } from '../../components/feedback/ToastProvider'; diff --git a/apps/web/src/components/admin/AdminModerationView.tsx b/apps/web/src/components/admin/AdminModerationView.tsx index e05a27d32..3b22cc12f 100644 --- a/apps/web/src/components/admin/AdminModerationView.tsx +++ b/apps/web/src/components/admin/AdminModerationView.tsx @@ -198,7 +198,7 @@ export const AdminModerationView: React.FC = () => { { label: 'Pending Appeals', value: stats.pending_appeals, color: 'text-blue-400' }, { label: 'Pending Fingerprints', value: stats.pending_fingerprints, color: 'text-purple-400' }, ].map((stat) => ( -
{item.reason}
{product.author}
No tracks trending right now.