Removed unused console.log
This commit is contained in:
@@ -97,8 +97,6 @@ export default function WriteBlanksSolutions({
|
|||||||
const userSolution = userSolutions.find((x) => x.id === id);
|
const userSolution = userSolutions.find((x) => x.id === id);
|
||||||
const solution = solutions.find((x) => x.id.toString() === id)!;
|
const solution = solutions.find((x) => x.id.toString() === id)!;
|
||||||
|
|
||||||
console.log(solution, id, userSolution);
|
|
||||||
|
|
||||||
return <Blank userSolution={userSolution?.solution} maxWords={maxWords} id={id} solutions={solution.solution} disabled />;
|
return <Blank userSolution={userSolution?.solution} maxWords={maxWords} id={id} solutions={solution.solution} disabled />;
|
||||||
})}
|
})}
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
@@ -64,7 +64,8 @@ export default function Login() {
|
|||||||
toast.error("Something went wrong!", {toastId: "server-error"});
|
toast.error("Something went wrong!", {toastId: "server-error"});
|
||||||
}
|
}
|
||||||
setIsLoading(false);
|
setIsLoading(false);
|
||||||
});
|
})
|
||||||
|
.finally(() => setIsLoading(false));
|
||||||
};
|
};
|
||||||
|
|
||||||
const sendEmailVerification = () => {
|
const sendEmailVerification = () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user