Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
k-yle committed Sep 10, 2023
1 parent 2ca28af commit ed0172f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/upload/Upload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const UploadInner: React.FC = () => {
// join with a semicolon, avoid duplicate values
const existing = new Set(changesetTags[key].split(';'));
existing.add(value);
changesetTags[key] += [...existing].join(';');
changesetTags[key] = [...existing].join(';');
} else {
// add new tag
changesetTags[key] = value;
Expand Down

0 comments on commit ed0172f

Please sign in to comment.