Skip to content

Commit

Permalink
Server async processes with task handling
Browse files Browse the repository at this point in the history
  • Loading branch information
vmonakhov committed Feb 14, 2025
1 parent 694ff9b commit c930355
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/CognateAnalysisModal/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2455,7 +2455,7 @@ class CognateAnalysisModal extends React.Component {
// and we don't have to initialize prediction model for every single word

const groups = [];
const group_size = 8; //words.length //4
const group_size = words.length; //4

for (let i = 0; i < words.length; i += group_size) {
groups.push(words.slice(i, i + group_size));
Expand Down

0 comments on commit c930355

Please sign in to comment.