From 443ae6abd49c21675c399f8500c1dfce99333fe8 Mon Sep 17 00:00:00 2001 From: NickJ202 Date: Wed, 18 Sep 2024 13:40:34 -0400 Subject: [PATCH] fix collection field replacement --- src/views/Upload/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Upload/index.tsx b/src/views/Upload/index.tsx index 6c489ec..fbc3af7 100644 --- a/src/views/Upload/index.tsx +++ b/src/views/Upload/index.tsx @@ -434,7 +434,7 @@ export default function Upload() { } if (collectionId) { - processSrc = processSrc.replace('', collectionId); + processSrc = processSrc.replaceAll('', collectionId); } }