Skip to content

Commit

Permalink
fix: author name misrepresented
Browse files Browse the repository at this point in the history
  • Loading branch information
IgboPharaoh authored and adamjonas committed Oct 16, 2023
1 parent 03219d1 commit 8406e32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const createArticlesFromFolder = (folderData: any[], folder: string) => {
},
} = xml;

const authorList = authors.map((author) => author.name);
const authorList = authors.map((author) => author.name).reverse();
const newPath = createPath(path);
const contributorsList = getContributors(authorList);
const summary = createSummary(xml.data?.entry.summary);
Expand Down

0 comments on commit 8406e32

Please sign in to comment.