Skip to content

Commit

Permalink
Remove erroneous bracket from end of recurring event filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
0-ft committed May 19, 2022
1 parent f3ad73d commit f4fba25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/Event.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export function basenameFromEvent(event: EventFrontmatter): string {
case undefined:
return `${event.date} ${event.title}`;
case "recurring":
return `(Every ${event.daysOfWeek.join(",")}) ${event.title})`;
return `(Every ${event.daysOfWeek.join(",")}) ${event.title}`;
}
}

Expand Down

0 comments on commit f4fba25

Please sign in to comment.