diff --git a/typo3/sysext/info/Classes/Controller/InfoPageTyposcriptConfigController.php b/typo3/sysext/info/Classes/Controller/InfoPageTyposcriptConfigController.php
index 7eea80480f407bc978b4efd0dbe9a995e2595923..a1e4f2fc88469f2bcbc6ae900dc52a5a8aaf57a2 100644
--- a/typo3/sysext/info/Classes/Controller/InfoPageTyposcriptConfigController.php
+++ b/typo3/sysext/info/Classes/Controller/InfoPageTyposcriptConfigController.php
@@ -318,16 +318,9 @@ class InfoPageTyposcriptConfigController
     protected function extractLinesFromTSConfig(array $row): array
     {
         $out = [];
-        $includeLines = 0;
         $out['uid'] = $row['uid'];
         $lines = GeneralUtility::trimExplode("\r\n", $row['TSconfig']);
-        foreach ($lines as $line) {
-            if (str_contains($line, '<INCLUDE_TYPOSCRIPT:')) {
-                $includeLines++;
-            }
-        }
-        $out['includeLines'] = $includeLines;
-        $out['writtenLines'] = (count($lines) - $includeLines);
+        $out['writtenLines'] = count($lines);
         return $out;
     }
 
@@ -356,14 +349,12 @@ class InfoPageTyposcriptConfigController
                 $line['icon'] = $this->iconFactory->getIconForRecord('pages', BackendUtility::getRecordWSOL('pages', $identifier), Icon::SIZE_SMALL)->render();
                 $line['title'] = 'ID: ' . $identifier;
                 $line['pageTitle'] = GeneralUtility::fixed_lgd_cs($title, 30);
-                $line['includedFiles'] = ($pageArray[$identifier . '_']['includeLines'] === 0 ? '' : $pageArray[$identifier . '_']['includeLines']);
                 $line['lines'] = ($pageArray[$identifier . '_']['writtenLines'] === 0 ? '' : $pageArray[$identifier . '_']['writtenLines']);
             } else {
                 $line['link'] = '';
                 $line['icon'] = $this->iconFactory->getIconForRecord('pages', BackendUtility::getRecordWSOL('pages', $identifier), Icon::SIZE_SMALL)->render();
                 $line['title'] = '';
                 $line['pageTitle'] = GeneralUtility::fixed_lgd_cs($title, 30);
-                $line['includedFiles'] = '';
                 $line['lines'] = '';
             }
             $lines[] = $line;
diff --git a/typo3/sysext/info/Resources/Private/Language/InfoPageTsConfig.xlf b/typo3/sysext/info/Resources/Private/Language/InfoPageTsConfig.xlf
index 6b9975ae69a9724a14e5749e90888b9875ac77dd..6e999ebbb8fec66cead8d1c64bfeb32461828280 100644
--- a/typo3/sysext/info/Resources/Private/Language/InfoPageTsConfig.xlf
+++ b/typo3/sysext/info/Resources/Private/Language/InfoPageTsConfig.xlf
@@ -39,9 +39,6 @@
 			<trans-unit id="pageTsconfig.overview.headline" resname="pageTsconfig.overview.headline">
 				<source>Page TSconfig Overview</source>
 			</trans-unit>
-			<trans-unit id="pageTsconfig.overview.table.th.included_tsconfig_files" resname="included_tsconfig_files">
-				<source>Included Files</source>
-			</trans-unit>
 			<trans-unit id="pageTsconfig.overview.table.th.lines" resname="written_tsconfig_lines">
 				<source>Lines</source>
 			</trans-unit>
diff --git a/typo3/sysext/info/Resources/Private/Partials/PageTsConfig/PageZero.html b/typo3/sysext/info/Resources/Private/Partials/PageTsConfig/PageZero.html
index 453924d9b91885948094d55f919e0190b85629b9..b36cb9ddc437b211763d029eb330a1981f85e8ed 100644
--- a/typo3/sysext/info/Resources/Private/Partials/PageTsConfig/PageZero.html
+++ b/typo3/sysext/info/Resources/Private/Partials/PageTsConfig/PageZero.html
@@ -18,7 +18,6 @@
                 <thead>
                     <tr>
                         <th>{f:translate(key: 'LLL:EXT:info/Resources/Private/Language/InfoPageTsConfig.xlf:pageTsconfig.overview.table.th.pagename')}</th>
-                        <th>{f:translate(key: 'LLL:EXT:info/Resources/Private/Language/InfoPageTsConfig.xlf:pageTsconfig.overview.table.th.included_tsconfig_files')}</th>
                         <th>{f:translate(key: 'LLL:EXT:info/Resources/Private/Language/InfoPageTsConfig.xlf:pageTsconfig.overview.table.th.lines')}</th>
                     </tr>
                 </thead>
@@ -39,7 +38,6 @@
                                     </f:else>
                                 </f:if>
                             </td>
-                            <td>{line.includedFiles}</td>
                             <td>{line.lines}</td>
                         </tr>
                     </f:for>