diff --git a/core/profiles/minimal/minimal.install b/core/profiles/minimal/minimal.install
index 9666b25..4b1c1fb 100644
--- a/core/profiles/minimal/minimal.install
+++ b/core/profiles/minimal/minimal.install
@@ -12,9 +12,11 @@
  * @see system_install()
  */
 function minimal_install() {
-  // Disable the user pictures on nodes.
-  Drupal::config('system.theme.global')->set('features.node_user_picture', FALSE)->save();
-
+  // In minimal profile the compact view is not configured.
+  // Remove the default member_for field.
+  entity_get_display('user', 'user', 'compact')
+    ->removeComponent('member_for')
+    ->save();
   // Allow visitor account creation, but with administrative approval.
   config('user.settings')->set('register', USER_REGISTER_VISITORS_ADMINISTRATIVE_APPROVAL)->save();
 
