MAESTRO: fix lint issues

This commit is contained in:
Mariusz Banach
2026-02-18 04:31:42 +01:00
parent 86a368b14d
commit 3c393f13d2
4 changed files with 7 additions and 3 deletions

View File

@@ -189,6 +189,7 @@ export default function CaptchaChallenge({
<div className="mt-5 flex flex-col gap-4">
<div className="rounded-xl border border-info/20 bg-background/50 p-4">
{/* eslint-disable-next-line @next/next/no-img-element */}
<img
src={`data:image/png;base64,${challenge.imageBase64}`}
alt="CAPTCHA challenge"

View File

@@ -1,5 +1,5 @@
const createLocalStorageMock = () => {
let store = new Map<string, string>();
const store = new Map<string, string>();
return {
get length() {