Incorrect home page displays

Nextcloud version (eg, 18.0.2): 19.0.1
Operating system and version (eg, Ubuntu 20.04): docker (image: nextcloud:latest)

The issue you are facing:
the following picture show the probleme I am facing???

Is this the first time you’ve seen this error? (Y/N): Since 19.0.1

Steps to replicate it:

Just log in nextcloud

The output of your Nextcloud log in Admin > Logging:

No specific log appear???

The output of your config.php file in /path/to/nextcloud (make sure you remove any identifiable information!):

<?php
$CONFIG = array (
  'htaccess.RewriteBase' => '/',
  'memcache.local' => '\\OC\\Memcache\\APCu',
  'apps_paths' => 
  array (
    0 => 
    array (
      'path' => '/var/www/html/apps',
      'url' => '/apps',
      'writable' => false,
    ),
    1 => 
    array (
      'path' => '/var/www/html/custom_apps',
      'url' => '/custom_apps',
      'writable' => true,
    ),
  ),
  'trusted_proxies' => 
  array (
    0 => 'xxx.xxx.xxx.xxx',
    1 => '2a01:e35:2fb5:c884:8000::1',
  ),
  'overwritehost' => 'nc.nikolov.fr',
  'overwriteprotocol' => 'https',
  'overwritewebroot' => '/',
  'memcache.distributed' => '\\OC\\Memcache\\Redis',
  'memcache.locking' => '\\OC\\Memcache\\Redis',
  'redis' => 
  array (
    'host' => 'redis',
    'port' => '6379',
  ),
  'mail_smtpmode' => 'smtp',
  'mail_smtphost' => 'ssl0.ovh.net',
  'mail_smtpport' => '465',
  'mail_smtpsecure' => 'ssl',
  'mail_smtpauth' => true,
  'mail_smtpauthtype' => 'LOGIN',
  'mail_smtpname' => 'xxxx@xxxx.fr',
  'mail_smtppassword' => '"ho ho"',
  'mail_from_address' => 'noreply-nc',
  'mail_domain' => 'nc.nikolov.fr',
  'instanceid' => 'oclxxxx',
  'passwordsalt' => 'xxxx+xxxx/xxx',
  'secret' => 'xxxxx/xxxxx/xxxxx',
  'trusted_domains' => 
  array (
    0 => 'nc.nikolov.fr',
    1 => 'onlyoffice-documentserver-data',
  ),
  'datadirectory' => '/var/www/html/data',
  'dbtype' => 'mysql',
  'version' => '19.0.1.1',
  'overwrite.cli.url' => 'https://nc.nikolov.fr',
  'dbname' => 'nextcloud',
  'dbhost' => 'xxxxxx',
  'dbport' => '',
  'dbtableprefix' => 'oc_',
  'mysql.utf8mb4' => true,
  'dbuser' => 'nc',
  'dbpassword' => 'xxxxxxx',
  'installed' => true,
  'overwritecondaddr' => '^xxx\\.xxx\\.xxx\\.[1-254]$',
  'onlyoffice' => 
  array (
    'DocumentServerUrl' => '/oo/',
    'DocumentServerInternalUrl' => 'http://xxx/',
    'StorageUrl' => 'https://nc.nikolov.fr/',
  ),
  'maintenance' => false,
  'app_install_overwrite' => 
  array (
    0 => 'dicomviewer',
    1 => 'ocr',
    2 => 'radio',
    3 => 'camerarawpreviews',
    4 => 'joplin',
  ),
  'theme' => '',
  'loglevel' => 0,
);

Please load your website and use network analysis and post the http requests.
I think some files get errors (code != 200)

part " UI overview"
https://developer.mozilla.org/en-US/docs/Tools/Network_Monitor
partie" Vue d’ensemble de l’interface utilisateur"
https://developer.mozilla.org/fr/docs/Outils/Moniteur_réseau

Hi,
The problem comes from radio extension.
See the network on firefox


thanks
Vandman