diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f2fee2f8d3..d25c9e4670 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: uses: pnpm/action-setup@v2 with: run_install: false - version: 7 + version: 8 - name: Cache node_modules id: node-modules-cache uses: actions/cache@v3 diff --git a/.vscode/settings.json b/.vscode/settings.json index 3fbb4ab257..8345c107c1 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,8 +2,8 @@ "typescript.tsdk": "node_modules/typescript/lib", "typescript.enablePromptUseWorkspaceTsdk": true, "editor.codeActionsOnSave": { - "source.fixAll": true, - "source.organizeImports": true, - "source.sortMembers": true + "source.fixAll": "explicit", + "source.organizeImports": "explicit", + "source.sortMembers": "explicit" } } diff --git a/app/[page]/layout.tsx b/app/[page]/layout.tsx index 453253dca7..50614b5b16 100644 --- a/app/[page]/layout.tsx +++ b/app/[page]/layout.tsx @@ -1,15 +1,12 @@ import Footer from 'components/layout/footer'; -import { Suspense } from 'react'; export default function Layout({ children }: { children: React.ReactNode }) { return ( - + <>
-
- {children} -
+
{children}