Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Feb 5, 2025
1 parent f741eb4 commit 4714dd5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
7 changes: 3 additions & 4 deletions backend/src/build-system/context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
1 change: 0 additions & 1 deletion frontend/src/app/(main)/Home.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

// app/page.tsx or components/Home.tsx
'use client';
import React, { useEffect, useState, useRef, useCallback } from 'react';
Expand Down

0 comments on commit 4714dd5

Please sign in to comment.