···27272828export function outdentFull(
2929 block: Block,
3030- previousBlock: Block | null,
3130 rep?: Replicache<ReplicacheMutators> | null,
3231) {
3333- console.log("yo? ", block);
3432 if (!block.listData) return;
35333634 // make this block not a list
···4442 // If there are none or this block is a level 1 list item, we don't need to move anything
45434644 let after = block.listData?.path.find((f) => f.depth === 1)?.entity;
4747- console.log({ after });
4545+4846 // move this block to be after that block
4947 after &&
5048 after !== block.value &&