Revert "Add a page and config option for a room directory server"

This reverts commit 401d8ed930.

Revert "Minor styling changes"

This reverts commit 3de1ce8f2f.

Revert "Use consistent "bookmark" wording in code and UI"

This reverts commit c45cb62e2d.

Revert "Move featured servers into the Featured section"

This reverts commit 53612f4641.
This commit is contained in:
Ginger 2025-09-13 15:12:10 -04:00
parent 6a462d2801
commit be51dc5f12
No known key found for this signature in database
13 changed files with 279 additions and 377 deletions

View file

@ -1,6 +1,5 @@
import { useMatch, useParams } from 'react-router-dom';
import { getExploreFeaturedPath, getExplorePath } from '../../pages/pathUtils';
import { useClientConfig } from '../useClientConfig';
export const useExploreSelected = (): boolean => {
const match = useMatch({
@ -27,8 +26,3 @@ export const useExploreServer = (): string | undefined => {
return server;
};
export const useDirectoryServer = (): string | undefined => {
const { featuredCommunities } = useClientConfig();
return featuredCommunities?.directoryServer;
};