Skip to content

Commit

Permalink
comma removed
Browse files Browse the repository at this point in the history
  • Loading branch information
Gemma committed Jun 20, 2024
1 parent 0c2fd73 commit da6b080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/Layout/Layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ function Layout (props) {
if (e.target.checked) {
setQuery(prevQuery => {
if (!prevQuery) return addQuery;
return `${prevQuery}, ${addQuery}`;
return `${prevQuery},${addQuery}`;
});
} else {
setQuery(prevQuery => {
Expand Down

0 comments on commit da6b080

Please sign in to comment.