'use client'; import React from 'react'; import { useDownload } from '@/contexts/DownloadContext'; export function DownloadBubble() { const { tasks, downloadingCount, setShowDownloadPanel } = useDownload(); if (tasks.length === 0) { return null; } return (
); }