Links for the same instance shouldn't contain instance name suffix (#7)

pull/11/head
Jc Miñarro 2022-12-24 16:39:17 +01:00 zatwierdzone przez GitHub
rodzic 7a512e64ba
commit 1a368e963f
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -292,7 +292,7 @@ function AccountDetails({ account, mainDomain }) {
</small>
</div>
<div className="inline-flex items-center text-base font-semibold text-gray-900 dark:text-white my-4 sm:my-0">
<a href={`https://${mainDomain}/@${acct}`} className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded" target="_blank" rel="noreferrer">
<a href={`https://${mainDomain}/@${acct.replace('@'+mainDomain, '')}`} className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded" target="_blank" rel="noreferrer">
Follow
</a>
</div>