Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
katydecorah committed Dec 31, 2024
1 parent 730ed8e commit d94ca30
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -140964,6 +140964,9 @@ function summaryMarkdown(library, date, bookStatus) {
return `# Updated library

${capitalize(`${bookStatus}`)}: “${BookTitle}”
Date: ${date}
Book status: ${bookStatus}
Result: ${bookStatus === "finished" && date}
${bookStatus === "finished" && date
? yearReviewSummary(library, date.slice(0, 4))
: ""}
Expand Down
3 changes: 3 additions & 0 deletions src/summary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ export function summaryMarkdown(
return `# Updated library
${capitalize(`${bookStatus}`)}: “${BookTitle}
Date: ${date}
Book status: ${bookStatus}
Result: ${bookStatus === "finished" && date}
${
bookStatus === "finished" && date
? yearReviewSummary(library, date.slice(0, 4))
Expand Down

0 comments on commit d94ca30

Please sign in to comment.