chore(release): update version to 0.5.0-rc.1

This commit is contained in:
Nathan Flurry 2026-03-17 02:38:47 -07:00
parent 3b8c74589d
commit f25a92aca8
29 changed files with 38 additions and 38 deletions

View file

@ -443,7 +443,7 @@ const DesktopTab = ({ getClient }: { getClient: () => SandboxAgent }) => {
setDownloadingRecordingId(id);
try {
const bytes = await getClient().downloadDesktopRecording(id);
const blob = new Blob([bytes], { type: "video/mp4" });
const blob = new Blob([bytes as BlobPart], { type: "video/mp4" });
const url = URL.createObjectURL(blob);
const a = document.createElement("a");
a.href = url;