{currentSprint ? currentSprint.name : "Work Board"}
{debouncedSearchQuery.trim() ? ( <> {sprintTasks.length} of {currentSprint ? tasks.filter((t) => t.sprintId === currentSprint.id).length : 0} tasks match "{debouncedSearchQuery}" > ) : ( <> {sprintTasks.length} tasks ยท {sprintTasks.filter((t) => t.status === "done").length} done > )}
{currentSprint?.name || "No Active Sprint"}
{currentSprint ? `${formatSprintDisplayDate(currentSprint.startDate, "start")} - ${formatSprintDisplayDate(currentSprint.endDate, "end")}` : "Create or activate a sprint to group work"}