Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
89 changes: 84 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion apps/desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@ai-sdk/react": "^2.0.82",
"@electric-sql/client": "^1.1.1",
"@huggingface/languages": "^1.0.0",
"@hypr/codemirror": "workspace:^",
"@hypr/db": "workspace:*",
"@hypr/plugin-analytics": "workspace:*",
"@hypr/plugin-db2": "workspace:*",
Expand All @@ -36,7 +37,6 @@
"@hypr/plugin-permissions": "workspace:*",
"@hypr/plugin-template": "workspace:*",
"@hypr/plugin-windows": "workspace:*",
"@hypr/codemirror": "workspace:^",
"@hypr/tiptap": "workspace:^",
"@hypr/ui": "workspace:^",
"@hypr/utils": "workspace:^",
Expand Down Expand Up @@ -68,6 +68,7 @@
"@xstate/react": "^6.0.0",
"@xstate/store": "^3.11.2",
"ai": "^5.0.82",
"chroma-js": "^3.1.2",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dompurify": "^3.3.0",
Expand All @@ -93,6 +94,7 @@
"@tanstack/react-router-devtools": "^1.133.36",
"@tanstack/router-plugin": "^1.133.36",
"@tauri-apps/cli": "^2.9.2",
"@types/chroma-js": "^3.1.2",
"@types/json5": "^2.2.0",
"@types/node": "^24.9.2",
"@types/react": "^19.2.2",
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/components/main/body/sessions/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export function TabContentNote({ tab }: { tab: Extract<Tab, { type: "sessions" }
&& audioUrl && listenerStatus === "inactive";

return (
<AudioPlayer.Provider url={audioUrl ?? ""}>
<AudioPlayer.Provider sessionId={tab.id} url={audioUrl ?? ""}>
<StandardTabWrapper
afterBorder={showTimeline && <AudioPlayer.Timeline />}
floatingButton={<FloatingActionButton tab={tab} />}
Expand Down
Loading
Loading