Skip to content

Commit

Permalink
Re-enable service worker drive
Browse files Browse the repository at this point in the history
  • Loading branch information
martinRenou committed Jan 8, 2024
1 parent 22092e8 commit daf6f37
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,9 @@ const server_kernels = kernel_specs.map(kernelspec => {
kernelspecs.register({
spec: kernelspec,
create: async (options: IKernel.IOptions): Promise<IKernel> => {
// const mountDrive = !!(
// serviceWorker?.enabled && broadcastChannel?.enabled
// );
const mountDrive = false;
const mountDrive = !!(
serviceWorker?.enabled && broadcastChannel?.enabled
);

if (mountDrive) {
console.info(
Expand Down

0 comments on commit daf6f37

Please sign in to comment.