diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 769593f3..a2ac0501 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -47,7 +47,7 @@ jobs: - name: Lint frontend if: steps.changes.outputs.frontend == 'true' working-directory: ./frontend - run: npm run lint + run: npx prettier . --check - name: Lint Python backend if: steps.changes.outputs.backend == 'true' diff --git a/frontend/src/pages/_app.tsx b/frontend/src/pages/_app.tsx index c14313e8..5eac6be9 100644 --- a/frontend/src/pages/_app.tsx +++ b/frontend/src/pages/_app.tsx @@ -2,5 +2,5 @@ import '@/styles/globals.css'; import type { AppProps } from 'next/app'; export default function App({ Component, pageProps }: AppProps) { - return ; + return ; }