Skip to content

Commit 342d884

Browse files
committed
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.
1 parent db012e0 commit 342d884

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/generateMarkdown.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export function generateMarkdown(summary, order) {
3434
// Add meeting information to markdown
3535
if (name) markdown += `- Type of meeting: ${name}\n`;
3636
if (host || documenter || peoplePresent) {
37-
markdown += `- People present: `;
37+
markdown += `- Present: `;
3838
if (host) markdown += `${host} [facilitator], `;
3939
if (documenter) markdown += `${documenter} [documenter], `;
4040
if (peoplePresent) markdown += `${peoplePresent.split(', ').map(p => p.trim()).join(', ')}`;

0 commit comments

Comments
 (0)