diff --git a/src/components/nav-menu.jsx b/src/components/nav-menu.jsx
index 0a4bb570..9e1759f3 100644
--- a/src/components/nav-menu.jsx
+++ b/src/components/nav-menu.jsx
@@ -21,6 +21,8 @@ import Avatar from './avatar';
import Icon from './icon';
import MenuLink from './menu-link';
+const supportsTouch = 'ontouchstart' in window;
+
function NavMenu(props) {
const snapStates = useSnapshot(states);
const { masto, instance, authenticated } = api();
@@ -210,6 +212,7 @@ function NavMenu(props) {
)}
{lists?.length > 0 ? (
Bookmarks