diff --git a/cypress/e2e/settings/preferences-user-settings-tab.spec.ts b/cypress/e2e/settings/preferences-user-settings-tab.spec.ts
new file mode 100644
index 0000000000..29fb668de1
--- /dev/null
+++ b/cypress/e2e/settings/preferences-user-settings-tab.spec.ts
@@ -0,0 +1,45 @@
+/*
+Copyright 2023 Suguru Hirahara
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+///
+
+import { HomeserverInstance } from "../../plugins/utils/homeserver";
+
+describe("Preferences user settings tab", () => {
+ let homeserver: HomeserverInstance;
+
+ beforeEach(() => {
+ cy.startHomeserver("default").then((data) => {
+ homeserver = data;
+ cy.initTestUser(homeserver, "Bob");
+ });
+ });
+
+ afterEach(() => {
+ cy.stopHomeserver(homeserver);
+ });
+
+ it("should be rendered properly", () => {
+ cy.openUserSettings("Preferences");
+
+ cy.get(".mx_SettingsTab.mx_PreferencesUserSettingsTab").within(() => {
+ // Assert that the top heading is rendered
+ cy.findByTestId("preferences").should("have.text", "Preferences").should("be.visible");
+ });
+
+ cy.get(".mx_SettingsTab.mx_PreferencesUserSettingsTab").percySnapshotElement("User settings tab - Preferences");
+ });
+});
diff --git a/src/components/views/settings/tabs/user/PreferencesUserSettingsTab.tsx b/src/components/views/settings/tabs/user/PreferencesUserSettingsTab.tsx
index 0d8acbca55..4fbb174516 100644
--- a/src/components/views/settings/tabs/user/PreferencesUserSettingsTab.tsx
+++ b/src/components/views/settings/tabs/user/PreferencesUserSettingsTab.tsx
@@ -144,7 +144,9 @@ export default class PreferencesUserSettingsTab extends React.Component
-