mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-30 12:55:02 +00:00
removed some unnecessary logging
This commit is contained in:
parent
d4a4b0d019
commit
5dd21d89c4
3 changed files with 0 additions and 5 deletions
|
|
@ -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 });
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
);
|
||||
|
|
|
|||
|
|
@ -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" },
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue