This commit is contained in:
2026-03-11 03:09:52 +08:00
parent f74d5a4510
commit a40cc2175e

View File

@@ -49,7 +49,7 @@ const LinkItem = ({ label, icon, url }: { label: string; icon: React.ReactNode;
copy()
return;
}
if (url && url.startsWith('http')) {
if (url && url.includes(':')) {
window.open(url, '_blank')
}
}