Skip to content

Commit

Permalink
[xs][build-fix] Fix code to build
Browse files Browse the repository at this point in the history
  • Loading branch information
Gutts-n committed Aug 29, 2024
1 parent 590ea6a commit dbc695d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/_shared/ChipsInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ function transToGroupOption(options: Option[], groupBy?: string) {
if (!groupOption[key]) {
groupOption[key] = [];
}
groupOption[key].push(option);
groupOption[key]!.push(option);
});
return groupOption;
}
Expand Down

0 comments on commit dbc695d

Please sign in to comment.