From 4714dd5b3222fb61d09ee5956093000952e84ee7 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Wed, 5 Feb 2025 20:46:06 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- backend/src/build-system/context.ts | 7 +++---- frontend/src/app/(main)/Home.tsx | 1 - 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/backend/src/build-system/context.ts b/backend/src/build-system/context.ts index 5fa5642..725b2d2 100644 --- a/backend/src/build-system/context.ts +++ b/backend/src/build-system/context.ts @@ -107,12 +107,11 @@ export class BuilderContext { this.globalContext.set('databaseType', sequence.databaseType || 'SQLite'); const projectUUIDPath = - new Date().toISOString().slice(0, 18).replaceAll(/:/g, '-') + - '-' + - uuidv4(); + new Date().toISOString().slice(0, 18).replaceAll(/:/g, '-') + + '-' + + uuidv4(); this.globalContext.set('projectUUID', projectUUIDPath); - if (process.env.DEBUG) { const timestamp = new Date().toISOString().replace(/[:.]/g, '-'); this.logFolder = path.join( diff --git a/frontend/src/app/(main)/Home.tsx b/frontend/src/app/(main)/Home.tsx index c9aee1b..3323b53 100644 --- a/frontend/src/app/(main)/Home.tsx +++ b/frontend/src/app/(main)/Home.tsx @@ -1,4 +1,3 @@ - // app/page.tsx or components/Home.tsx 'use client'; import React, { useEffect, useState, useRef, useCallback } from 'react';