From a4fc4bb1c1802896a975a4b6d4b6c4d10cf7256a Mon Sep 17 00:00:00 2001 From: Tadas Petra <60107328+tadaspetra@users.noreply.github.com> Date: Tue, 14 Apr 2026 14:10:53 -0500 Subject: [PATCH] remove mutable object --- agents/nextjs/quickstart/example/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agents/nextjs/quickstart/example/app/page.tsx b/agents/nextjs/quickstart/example/app/page.tsx index 84494f65..9c399555 100644 --- a/agents/nextjs/quickstart/example/app/page.tsx +++ b/agents/nextjs/quickstart/example/app/page.tsx @@ -6,7 +6,7 @@ import { useConversationStatus, } from "@elevenlabs/react"; import { - type MutableRefObject, + type RefObject, useCallback, useEffect, useRef, @@ -37,7 +37,7 @@ type VoiceAgentPageProps = { setSessionError: (value: string | null) => void; setStarting: (value: boolean) => void; starting: boolean; - nextLineId: MutableRefObject; + nextLineId: RefObject; }; type ConversationMessage = {