Skip to content

Commit

Permalink
Fix eraser color
Browse files Browse the repository at this point in the history
  • Loading branch information
joh-ann committed Jan 10, 2024
1 parent 7376553 commit 79a8d99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/WhiteBoard/WhiteBoard.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function WhiteBoard() {
var remoteLastY = 0;
var isErasing = false;
const defaultColor = "#000000";
const backgroundColor = appColor === "light" ? "white" : "#8d8c8d";
const backgroundColor = appColor === "light" ? "white" : "#636363";

function received(data) {
const jsonData = JSON.parse(data.data);
Expand Down

0 comments on commit 79a8d99

Please sign in to comment.