Skip to content

Commit

Permalink
fix collection field replacement
Browse files Browse the repository at this point in the history
  • Loading branch information
NickJ202 committed Sep 18, 2024
1 parent bf8b890 commit 443ae6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/Upload/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ export default function Upload() {
}

if (collectionId) {
processSrc = processSrc.replace('<COLLECTION>', collectionId);
processSrc = processSrc.replaceAll('<COLLECTION>', collectionId);
}
}

Expand Down

0 comments on commit 443ae6a

Please sign in to comment.