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';