Skip to content

Commit

Permalink
Merge branch 'main' into deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
ThEditor committed Sep 16, 2024
2 parents d966706 + 25f5792 commit a0cf4d6
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/app/challenge/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,12 +132,6 @@ const ChallengePage: React.FC = () => {

const showHintResponse = (msgCode: number) => {
if (msgCode === -1) return;
if (!(window as unknown as { debugMode: boolean }).debugMode) return;
toast({
title: "Hint Response",
description: msgCodes[msgCode] ?? "",
duration: 5000,
});
setResponse(msgCodes[msgCode] ?? "");
setTimeout(() => {
setResponse("");
Expand Down

0 comments on commit a0cf4d6

Please sign in to comment.