Skip to content

Commit

Permalink
Removed test code
Browse files Browse the repository at this point in the history
Removed '123' from the code that was used for testing the search-code endpoint unavailability
  • Loading branch information
IvanJelicSF authored Dec 20, 2024
1 parent f24244b commit e2efd84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/components/ContentLists/Manual/Manual.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ class Manual extends React.Component {
}

try {
const article = await this.props.publisher.getArticleByCode(code + '123');
const article = await this.props.publisher.getArticleByCode(code);
if (article) {
console.warn('Article added to the content list successfully.', article);
return article.id;
Expand Down

0 comments on commit e2efd84

Please sign in to comment.