removed some unnecessary logging

This commit is contained in:
Khalim Conn-Kowlessar 2025-11-25 11:08:38 +00:00
parent d4a4b0d019
commit 5dd21d89c4
3 changed files with 0 additions and 5 deletions

View file

@ -14,7 +14,6 @@ const s3 = new S3Client({
export async function POST(req: Request) {
try {
const { key } = await req.json(); // key = "path/to/photo.jpg"
console.log("Received key for signing:", key);
if (!key)
return NextResponse.json({ error: "Missing key" }, { status: 400 });

View file

@ -25,8 +25,6 @@ function SummaryBox({ scenarios, numProperties }: SummaryBoxProps) {
const defaultScenario =
scenarios.find((scenario) => scenario.isDefault) || scenarios[0];
console.log("scenarios", scenarios);
const [selectedScenarioId, setSelectedScenarioId] = useState(
Number(defaultScenario.id)
);

View file

@ -186,8 +186,6 @@ function useCreateRemoteAssessment({
event_type: "remote_assessment",
};
console.log("Triggering engine with body:", triggerBody);
const response = await fetch("/api/plan/trigger", {
method: "POST",
headers: { "Content-Type": "application/json" },