Skip to content

Commit 8a81d84

Browse files
chore: eslint
1 parent 53e314a commit 8a81d84

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/app/api/qrcode/route.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ export async function GET() {
1313
'Cache-Control': 'public, max-age=31536000, immutable',
1414
},
1515
});
16-
} catch (_error) {
16+
} catch (error) {
17+
console.error(error);
1718
return new NextResponse('Error loading QR code', { status: 500 });
1819
}
1920
}

0 commit comments

Comments
 (0)