You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ipc/handlers/createFromTemplate.ts
+21-20Lines changed: 21 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -483,52 +483,53 @@ export async function createFromTemplate({
483
483
fullAppPath,
484
484
selectedTemplateId,
485
485
selectedBackendFramework,
486
+
isFullStack,
486
487
}: {
487
488
fullAppPath: string;
488
489
selectedTemplateId?: string;
489
490
selectedBackendFramework?: string|null;
491
+
isFullStack?: boolean;
490
492
}){
491
-
// EMERGENCY DEBUG: Create debug file at function start
492
-
try{
493
-
constdebugStartContent=`DEBUG: createFromTemplate called at ${newDate().toISOString()}\nfullAppPath: ${fullAppPath}\nselectedTemplateId: ${selectedTemplateId}\nselectedBackendFramework: ${selectedBackendFramework}`;
0 commit comments