feat: configurable favicon service URL (#659)

This commit is contained in:
Alex Gleason
2025-11-14 05:28:10 -03:00
committed by GitHub
parent e544c0a801
commit f8cca5522f
28 changed files with 151 additions and 20 deletions

View File

@@ -6,6 +6,7 @@ import {
toGeneralSettings,
toPostSettings,
toRelaySettings,
toSystemSettings,
toTranslation,
toWallet
} from '@/lib/link'
@@ -15,6 +16,7 @@ import { useNostr } from '@/providers/NostrProvider'
import {
Check,
ChevronRight,
Cog,
Copy,
Info,
KeyRound,
@@ -141,6 +143,13 @@ export default function Settings() {
</div>
</SettingItem>
</AboutInfoDialog>
<SettingItem className="clickable" onClick={() => push(toSystemSettings())}>
<div className="flex items-center gap-4">
<Cog />
<div>{t('System')}</div>
</div>
<ChevronRight />
</SettingItem>
<div className="px-4 mt-4">
<Donation />
</div>