Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
thepiyush-303 committed Dec 28, 2024
1 parent f1d6efd commit b81b0b1
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ export const MessageAggregator = ({
if (element) {
setShowSidebar(false);
element.scrollIntoView({ behavior: 'smooth', block: 'nearest' });
element.style.backgroundColor = "rgba(255, 204, 0, 0.5)";
element.style.backgroundColor = 'rgba(255, 204, 0, 0.5)';
setTimeout(() => {
element.style.backgroundColor = "";
}, 1000);
element.style.backgroundColor = '';
}, 1000);
}
}
};
Expand Down

0 comments on commit b81b0b1

Please sign in to comment.