Reorder right sidebar

merge-requests/3312/head
Alex Gleason 2025-01-24 22:52:44 -06:00
rodzic c54b48f00a
commit 4498130f23
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 9 dodań i 9 usunięć

Wyświetl plik

@ -104,22 +104,22 @@ const HomePage: React.FC<IHomePage> = ({ children }) => {
{me && features.announcements && (
<AnnouncementsPanel />
)}
{(hasCrypto && cryptoLimit > 0 && me) && (
<CryptoDonatePanel limit={cryptoLimit} />
)}
{(hasPatron && me) && (
<FundingPanel />
)}
{features.birthdays && (
<BirthdayPanel limit={10} />
)}
{features.trends && (
<TrendsPanel limit={5} />
)}
{features.suggestions && (
<WhoToFollowPanel limit={3} />
)}
{features.birthdays && (
<BirthdayPanel limit={10} />
)}
<PromoPanel />
{(hasCrypto && cryptoLimit > 0 && me) && (
<CryptoDonatePanel limit={cryptoLimit} />
)}
{(hasPatron && me) && (
<FundingPanel />
)}
<LinkFooter />
</Layout.Aside>
</>