diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 37ba361234..b824c3330b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,10 +9,6 @@ on: jobs: changes: runs-on: ubuntu-latest - # Cancels any in-progress runs with same ref - concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true permissions: pull-requests: read outputs: @@ -268,7 +264,7 @@ jobs: if: always() with: name: test-results - path: test-results/ + path: test/test-results/ retention-days: 1 tests-type-generation: diff --git a/packages/next/src/layouts/Root/index.tsx b/packages/next/src/layouts/Root/index.tsx index 257bbe70fd..692c39bb92 100644 --- a/packages/next/src/layouts/Root/index.tsx +++ b/packages/next/src/layouts/Root/index.tsx @@ -13,7 +13,6 @@ import 'react-toastify/dist/ReactToastify.css' import { getRequestLanguage } from '../../utilities/getRequestLanguage.js' import { DefaultEditView } from '../../views/Edit/Default/index.js' -import { DefaultCell } from '../../views/List/Default/Cell/index.js' import { DefaultListView } from '../../views/List/Default/index.js' export const metadata = { @@ -63,7 +62,6 @@ export const RootLayout = async ({ } const { componentMap, wrappedChildren } = buildComponentMap({ - DefaultCell, DefaultEditView, DefaultListView, children, diff --git a/packages/next/src/views/Account/Settings/index.tsx b/packages/next/src/views/Account/Settings/index.tsx index 2a01c8ff12..aaf9c3657e 100644 --- a/packages/next/src/views/Account/Settings/index.tsx +++ b/packages/next/src/views/Account/Settings/index.tsx @@ -1,6 +1,6 @@ 'use client' import { ReactSelect } from '@payloadcms/ui/elements/ReactSelect' -import { Label } from '@payloadcms/ui/forms/Label' +import { FieldLabel } from '@payloadcms/ui/forms/FieldLabel' import { useTranslation } from '@payloadcms/ui/providers/Translation' import React from 'react' @@ -20,7 +20,7 @@ export const Settings: React.FC<{

{t('general:payloadSettings')}

-