remove leftover console.log
Some checks failed
Build / build (push) Has been cancelled
Build / build (pull_request) Failing after 1m15s

This commit is contained in:
Sainan 2025-04-13 03:22:20 +02:00
parent 960ed238b1
commit 881daf6311

View File

@ -33,7 +33,6 @@ export const guildTechController: RequestHandler = async (req, res) => {
const accountId = await getAccountIdForRequest(req); const accountId = await getAccountIdForRequest(req);
const inventory = await getInventory(accountId); const inventory = await getInventory(accountId);
const data = JSON.parse(String(req.body)) as TGuildTechRequest; const data = JSON.parse(String(req.body)) as TGuildTechRequest;
console.log(data);
if (data.Action == "Sync") { if (data.Action == "Sync") {
let needSave = false; let needSave = false;
const techProjects: ITechProjectClient[] = []; const techProjects: ITechProjectClient[] = [];