Skip to content

Commit

Permalink
fix(client): made the mask feature move on to the next video, rather …
Browse files Browse the repository at this point in the history
…than to the previous one
  • Loading branch information
Will Moss committed Jul 26, 2024
1 parent 1b2c80e commit 6d20cc1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,10 @@ const App = () => {
setTimeout(() => {
setBlacklistUpdater((b) => b + 1);
}, 1000);
} else setBlacklistUpdater((b) => b + 1);
} else {
setBlacklistUpdater((b) => b + 1);
container.current.scrollBy({ top: 1, left: 0 });
}
};

// Member - Manage blacklist UI
Expand Down

0 comments on commit 6d20cc1

Please sign in to comment.