Skip to content

Commit

Permalink
Merge pull request #10 from tmayoff/fix_bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tmayoff authored Nov 26, 2023
2 parents 0bb05e1 + ce381d0 commit d3643ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/meal_plan/plan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ async function fill_meal_plan_note(file_path: string) {
if (content.contains(header)) {
return content;
} else {
return "# " + header + "\n" + day_headers.join("\n\n") + content;
return "# " + header + "\n" + day_headers.join("\n\n") + "\n" + content;
}
});
}
Expand Down

0 comments on commit d3643ef

Please sign in to comment.