Skip to content

Commit

Permalink
comment out load slots
Browse files Browse the repository at this point in the history
  • Loading branch information
disconcision committed Nov 7, 2024
1 parent fdd66ee commit f592199
Showing 1 changed file with 18 additions and 19 deletions.
37 changes: 18 additions & 19 deletions src/web/Store.re
Original file line number Diff line number Diff line change
Expand Up @@ -25,25 +25,24 @@ let save_syntax_key: int => string =
let save_syntax = (save_idx: int, z: Zipper.t) =>
LocalStorage.set(save_syntax_key(save_idx), z |> serialize);

let tasks = [
Data.ep0,
Data.ep1,
Data.ep2,
Data.ep3,
Data.ep4,
Data.t0_transcribe,
Data.t1_transcribe,
Data.t2_transcribe,
Data.t3_transcribe,
// Data.emoji_paint,
// Data.t0_modify,
// Data.t1_modify,
// Data.t2_modify,
// Data.t3_modify,
// (("case 7\n| x => 7")),
// (("let (a, b) =\n(8*9<6, 17==6) in\n(a,(a, b))")),
// (("let f = fun z -> 9 in f(9)")),
];
let tasks = []; // Data.ep0,
// Data.ep1,
// Data.ep2,
// Data.ep3,
// Data.ep4,
// Data.t0_transcribe,
// Data.t1_transcribe,
// Data.t2_transcribe,
// Data.t3_transcribe,
// Data.emoji_paint,
// Data.t0_modify,
// Data.t1_modify,
// Data.t2_modify,
// Data.t3_modify,
// (("case 7\n| x => 7")),
// (("let (a, b) =\n(8*9<6, 17==6) in\n(a,(a, b))")),

// (("let f = fun z -> 9 in f(9)")),

let editor_defaults =
[serialize(Zipper.empty)]
Expand Down

0 comments on commit f592199

Please sign in to comment.