Fix bug in extract codebase that artificially limited to 30 files (#32)

This commit is contained in:
Will Chen
2025-04-28 13:45:32 -07:00
committed by GitHub
parent e65b80bcfa
commit aec5882c8d
3 changed files with 4 additions and 65 deletions

View File

@@ -431,20 +431,6 @@ export class IpcClient {
}
}
// Extract codebase information for a given app
public async extractCodebase(appId: number, maxFiles = 30): Promise<string> {
try {
const codebaseInfo = await this.ipcRenderer.invoke("extract-codebase", {
appId,
maxFiles,
});
return codebaseInfo as string;
} catch (error) {
showError(error);
throw error;
}
}
// Delete an app and all its files
public async deleteApp(appId: number): Promise<{ success: boolean }> {
try {