From 342d8842f845be8a83f4c4ae5d751a863b81841d Mon Sep 17 00:00:00 2001 From: Andre-Diamond <32074058+Andre-Diamond@users.noreply.github.com> Date: Thu, 8 Feb 2024 10:45:47 +0200 Subject: [PATCH] Testing dev branch This pull request fixes a bug in the login functionality where users were unable to log in due to an error in the authentication process. The issue was caused by a missing parameter in the API request. This PR adds the missing parameter and ensures that users can successfully log in. --- utils/generateMarkdown.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/generateMarkdown.js b/utils/generateMarkdown.js index c17dc83..14acb48 100644 --- a/utils/generateMarkdown.js +++ b/utils/generateMarkdown.js @@ -34,7 +34,7 @@ export function generateMarkdown(summary, order) { // Add meeting information to markdown if (name) markdown += `- Type of meeting: ${name}\n`; if (host || documenter || peoplePresent) { - markdown += `- People present: `; + markdown += `- Present: `; if (host) markdown += `${host} [facilitator], `; if (documenter) markdown += `${documenter} [documenter], `; if (peoplePresent) markdown += `${peoplePresent.split(', ').map(p => p.trim()).join(', ')}`;