diff --git a/app/soapbox/components/loading_spinner.js b/app/soapbox/components/loading_spinner.js index 4f2944b3f..ea74a0416 100644 --- a/app/soapbox/components/loading_spinner.js +++ b/app/soapbox/components/loading_spinner.js @@ -6,9 +6,9 @@ import PropTypes from 'prop-types'; import React from 'react'; const LoadingSpinner = ({ size = 30 }) => ( -
- {Array(12).fill().map(i => ( -
+
+ {[...Array(12).keys()].map(i => ( +
))}
);