Skip to content

Commit

Permalink
Fix color on rank
Browse files Browse the repository at this point in the history
  • Loading branch information
b-j-roberts committed Sep 27, 2024
1 parent 571789d commit 34deaf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/tabs/account/Account.js
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ const Account = (props) => {
const [animatedRankColor, setAnimatedRankColor] = React.useState(0);
const btrColorOffset = 1000;
useEffect(() => {
if (pixelCount < 50) return;
if (pixelCount < 500) return;
const interval = setInterval(() => {
setAnimatedRankColor((animatedRankColor + 3) % 360);
setRankBackground({
Expand Down

0 comments on commit 34deaf9

Please sign in to comment.