diff --git a/frontend/src/components/HostAlert/index.tsx b/frontend/src/components/HostAlert/index.tsx index 7dee8f94..37f8cdaf 100644 --- a/frontend/src/components/HostAlert/index.tsx +++ b/frontend/src/components/HostAlert/index.tsx @@ -9,7 +9,7 @@ const HostAlert = (): JSX.Element => { !hostUrl.includes('robosats') && (client === 'selfhosted' || client === 'desktop') ? SelfhostedAlert : UnsafeAlert; - return component(); + return hostUrl.endsWith('.onion') ? <> : component(); }; export default HostAlert;