diff --git a/surfsense_web/components/tool-ui/audio.tsx b/surfsense_web/components/tool-ui/audio.tsx index dae752034..f8053677c 100644 --- a/surfsense_web/components/tool-ui/audio.tsx +++ b/surfsense_web/components/tool-ui/audio.tsx @@ -223,6 +223,7 @@ export function Audio({ id, src, title, durationMs, className }: AudioProps) { onClick={togglePlayPause} disabled={isLoading} className="size-7 sm:size-8" + aria-label={isPlaying ? "Pause" : "Play"} > {isLoading ? (
@@ -234,7 +235,7 @@ export function Audio({ id, src, title, durationMs, className }: AudioProps) {
-