diff --git a/web/components/buttons/copy-link-button.tsx b/web/components/buttons/copy-link-button.tsx index a7b1c051..02ffa5ca 100644 --- a/web/components/buttons/copy-link-button.tsx +++ b/web/components/buttons/copy-link-button.tsx @@ -170,7 +170,9 @@ export async function mobileShare(url: string) { }) return true } catch (e) { - console.error('Failed to share', e) + if (!(e instanceof Error && e.message.includes('navigator.share is not a function'))) { + console.error('Failed to share', e) + } return false } }