diff --git a/typo3/sysext/frontend/Classes/Preview/TextPreviewRenderer.php b/typo3/sysext/frontend/Classes/Preview/TextPreviewRenderer.php
deleted file mode 100644
index fa2cecd9c4c08b6be338b79cd1c20775121f4e40..0000000000000000000000000000000000000000
--- a/typo3/sysext/frontend/Classes/Preview/TextPreviewRenderer.php
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-/*
- * This file is part of the TYPO3 CMS project.
- *
- * It is free software; you can redistribute it and/or modify it under
- * the terms of the GNU General Public License, either version 2
- * of the License, or any later version.
- *
- * For the full copyright and license information, please read the
- * LICENSE.txt file that was distributed with this source code.
- *
- * The TYPO3 project - inspiring people to share!
- */
-
-namespace TYPO3\CMS\Frontend\Preview;
-
-use TYPO3\CMS\Backend\Preview\StandardContentPreviewRenderer;
-use TYPO3\CMS\Backend\View\BackendLayout\Grid\GridColumnItem;
-
-/**
- * Contains a preview rendering for the page module of CType="text"
- * @internal this is a concrete TYPO3 hook implementation and solely used for EXT:frontend and not part of TYPO3's Core API.
- */
-class TextPreviewRenderer extends StandardContentPreviewRenderer
-{
-    public function renderPageModulePreviewContent(GridColumnItem $item): string
-    {
-        $row = $item->getRecord();
-        return $this->linkEditContent($this->renderText($row['bodytext'] ?? ''), $row);
-    }
-}
diff --git a/typo3/sysext/frontend/Classes/Preview/TextpicPreviewRenderer.php b/typo3/sysext/frontend/Classes/Preview/TextpicPreviewRenderer.php
deleted file mode 100644
index f3a2b6cd846ea828fe32079c6828636d021c4402..0000000000000000000000000000000000000000
--- a/typo3/sysext/frontend/Classes/Preview/TextpicPreviewRenderer.php
+++ /dev/null
@@ -1,44 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-/*
- * This file is part of the TYPO3 CMS project.
- *
- * It is free software; you can redistribute it and/or modify it under
- * the terms of the GNU General Public License, either version 2
- * of the License, or any later version.
- *
- * For the full copyright and license information, please read the
- * LICENSE.txt file that was distributed with this source code.
- *
- * The TYPO3 project - inspiring people to share!
- */
-
-namespace TYPO3\CMS\Frontend\Preview;
-
-use TYPO3\CMS\Backend\Preview\StandardContentPreviewRenderer;
-use TYPO3\CMS\Backend\Utility\BackendUtility;
-use TYPO3\CMS\Backend\View\BackendLayout\Grid\GridColumnItem;
-
-/**
- * Contains a preview rendering for the page module of CType="textpic"
- * @internal this is a concrete TYPO3 hook implementation and solely used for EXT:frontend and not part of TYPO3's Core API.
- */
-class TextpicPreviewRenderer extends StandardContentPreviewRenderer
-{
-    public function renderPageModulePreviewContent(GridColumnItem $item): string
-    {
-        $content = '';
-        $row = $item->getRecord();
-        if ($row['bodytext']) {
-            $content = $this->linkEditContent($this->renderText($row['bodytext']), $row);
-        }
-
-        if ($row['image']) {
-            $content .= $this->linkEditContent(BackendUtility::thumbCode(row: $row, table: 'tt_content', field: 'image', linkInfoPopup: false), $row);
-        }
-
-        return $content;
-    }
-}
diff --git a/typo3/sysext/frontend/Configuration/TCA/tt_content.php b/typo3/sysext/frontend/Configuration/TCA/tt_content.php
index 485fc65022f34b127d0a83939ba7eb27edc4f083..cc32944ae8711183896f668def725e3e2ffbe996 100644
--- a/typo3/sysext/frontend/Configuration/TCA/tt_content.php
+++ b/typo3/sysext/frontend/Configuration/TCA/tt_content.php
@@ -1161,7 +1161,6 @@ return [
             ',
         ],
         'text' => [
-            'previewRenderer' => \TYPO3\CMS\Frontend\Preview\TextPreviewRenderer::class,
             'showitem' => '
                 --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:general,
                     --palette--;;general,
@@ -1190,7 +1189,6 @@ return [
             ],
         ],
         'textpic' => [
-            'previewRenderer' => \TYPO3\CMS\Frontend\Preview\TextpicPreviewRenderer::class,
             'showitem' => '
                 --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:general,
                     --palette--;;general,