ensure recordings show after browser session ends (#3864)

This commit is contained in:
Jonathan Dobson
2025-10-30 12:36:38 -04:00
committed by GitHub
parent af9a5f31e4
commit c55148c228
2 changed files with 1 additions and 2 deletions

View File

@@ -112,7 +112,7 @@ function BrowserStream({
}
useQuery({
queryKey: ["browserSession", browserSessionId],
queryKey: ["hasBrowserSession", browserSessionId],
queryFn: async () => {
const client = await getClient(credentialGetter, "sans-api-v1");

View File

@@ -31,7 +31,6 @@ function BrowserSessionVideo() {
enabled: !!browserSessionId,
});
// Extract recordings from browser session data
const recordings = browserSession?.recordings || [];
if (isLoading) {