aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web')
-rw-r--r--apps/web/components/dashboard/BulkBookmarksAction.tsx3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/web/components/dashboard/BulkBookmarksAction.tsx b/apps/web/components/dashboard/BulkBookmarksAction.tsx
index e7068b9d..0867fdd2 100644
--- a/apps/web/components/dashboard/BulkBookmarksAction.tsx
+++ b/apps/web/components/dashboard/BulkBookmarksAction.tsx
@@ -69,6 +69,9 @@ export default function BulkBookmarksAction() {
}
function isClipboardAvailable() {
+ if (typeof window === "undefined") {
+ return false;
+ }
return window && window.navigator && window.navigator.clipboard;
}