From e15ec4bb3f7dfedb90a3c54a0a95f3c61b5ada2d Mon Sep 17 00:00:00 2001 From: Alois Date: Mon, 6 Apr 2026 00:40:11 +0200 Subject: [PATCH] Added console warning --- apps/web/src/index.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/web/src/index.tsx b/apps/web/src/index.tsx index 6e38e58..8b3641f 100644 --- a/apps/web/src/index.tsx +++ b/apps/web/src/index.tsx @@ -33,6 +33,13 @@ if (!wrapper) { throw new Error("Missing root element"); } +if (localStorage.getItem("log_level") === null) { + console.log( + "%cDo not paste anything in here, there is a 101.1% chance you're being scammed.", + "color: red; font-size: 24px; font-weight: bold; background: #220000; padding: 8px 12px; border: 3px solid red;", + ); +} + // @ts-expect-error Declare global function window.setLogLevelToMax = () => { localStorage.setItem("log_level", String(1000));