Skip to content

Commit

Permalink
again
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrochart committed Apr 9, 2024
1 parent 0d722e1 commit 4d9cecc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/collaboration-extension/src/collaboration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ async function runCellServerSide({
cell.inputHidden = false;
onCellExecuted({ cell, success: true });
break;
case 'code':
case 'code': {
const kernelId = sessionContext?.session?.kernel?.id;
const settings = ServerConnection.makeSettings();
const apiURL = URLExt.join(
Expand All @@ -245,6 +245,7 @@ async function runCellServerSide({
throw new ServerConnection.NetworkError(error);
}
break;
}
default:
break;
}
Expand Down

0 comments on commit 4d9cecc

Please sign in to comment.