The Blobbie.tsx component uses eval() to dynamically reference lottie animations, which is a major security risk. Refactor the blob lottie animations to use a simple object/array lookup instead of eval(). This will improve both security and performance.
Hint: Look at how the blobbies object is structured and consider using array indexing or a Map instead.
The Blobbie.tsx component uses eval() to dynamically reference lottie animations, which is a major security risk. Refactor the blob lottie animations to use a simple object/array lookup instead of eval(). This will improve both security and performance.
Hint: Look at how the blobbies object is structured and consider using array indexing or a Map instead.