diff --git a/app/views/RoomsListView/hooks/useSubscriptions.ts b/app/views/RoomsListView/hooks/useSubscriptions.ts index 485649f35c4..db6f6b00d26 100644 --- a/app/views/RoomsListView/hooks/useSubscriptions.ts +++ b/app/views/RoomsListView/hooks/useSubscriptions.ts @@ -39,7 +39,7 @@ export const useSubscriptions = () => { 'use memo'; const useRealName = useAppSelector(state => state.settings.UI_Use_Real_Name); - const server = useAppSelector(state => state.server); + const server = useAppSelector(state => state.server.server); const subscriptionRef = useRef(null); const [subscriptions, setSubscriptions] = useState([]); const [loading, setLoading] = useState(true);