diff --git a/test/fields/collections/Lexical/InlineFieldsDisplayComponent.tsx b/test/fields/collections/Lexical/InlineFieldsDisplayComponent.tsx deleted file mode 100644 index a17457e17..000000000 --- a/test/fields/collections/Lexical/InlineFieldsDisplayComponent.tsx +++ /dev/null @@ -1,9 +0,0 @@ -'use client' - -import type React from 'react' - -export const EmbedComponent: React.FC = (props) => { - const { data } = props - - return {data.key} -} diff --git a/test/fields/collections/Lexical/LabelComponent.tsx b/test/fields/collections/Lexical/LabelComponent.tsx deleted file mode 100644 index 17a726e5a..000000000 --- a/test/fields/collections/Lexical/LabelComponent.tsx +++ /dev/null @@ -1,12 +0,0 @@ -'use client' - -import type { Block, PayloadClientReactComponent } from 'payload' - -import React from 'react' - -export const LabelComponent: PayloadClientReactComponent = ( - props, -) => { - const { formData } = props - return
{formData?.key}
-}