Hide voice rooms on mobile

This commit is contained in:
mplorentz
2026-03-09 11:19:10 -04:00
committed by hodlbod
parent 0b09b63d85
commit 05de3dd7e0
3 changed files with 10 additions and 14 deletions
-3
View File
@@ -80,9 +80,6 @@ export const createScroller = ({
export const isMobile = "ontouchstart" in document.documentElement
// Remove this when we implement voice rooms on mobile
export const isMobileViewport = () => window.innerWidth <= 768
export const downloadText = (filename: string, text: string) => {
const blob = new Blob([text], {type: "text/plain"})
const url = URL.createObjectURL(blob)