diff --git a/src/app/components/OutfitCanvas.js b/src/app/components/OutfitCanvas.js index 1ee4204..5500d9e 100644 --- a/src/app/components/OutfitCanvas.js +++ b/src/app/components/OutfitCanvas.js @@ -213,7 +213,7 @@ export function OutfitCanvasMovie({ librarySrc, zIndex }) { const fileName = librarySrc.split("/").pop(); const fileNameWithoutExtension = fileName.split(".")[0]; constructorName = fileNameWithoutExtension.replace(/[ -]/g, ""); - if (constructorName.match(/^[0-9]+$/)) { + if (constructorName.match(/^[0-9]/)) { constructorName = "_" + constructorName; } } catch (e) {