- {/* Search input */}
-
- }
- placeholder="Search rooms…"
- size="500"
- variant="Background"
- outlined
- />
-
-
- {/* Results list */}
- {filteredRooms.length > 0 && (
-
- {filteredRooms.map(({ id, room }, idx) => {
- if (!room) return null;
- const dm = mDirects.has(id);
- const avatarUrl = dm
- ? getDirectRoomAvatarUrl(mx, room, 32, useAuthentication)
- : getRoomAvatarUrl(mx, room, 32, useAuthentication);
- const isSelected = idx === selectedIdx;
-
- return (
-
- );
- })}
-
- )}
-
- {filteredRooms.length === 0 && (
-
-
- {query.trim() ? `No rooms matching "${query}"` : 'No rooms'}
-
-
- )}
-
- >
- );
-}
diff --git a/src/app/features/settings/general/General.tsx b/src/app/features/settings/general/General.tsx
index 32cbe5bcc..7aa0a7e61 100644
--- a/src/app/features/settings/general/General.tsx
+++ b/src/app/features/settings/general/General.tsx
@@ -1316,43 +1316,6 @@ function Messages() {
);
}
-function KeyboardShortcuts() {
- const [quickSwitcherKey, setQuickSwitcherKey] = useSetting(settingsAtom, 'quickSwitcherKey');
- const qsBind = useKeyBind(setQuickSwitcherKey);
-
- return (
-