diff --git a/apps/remixdesktop/package.json b/apps/remixdesktop/package.json index db3a77b2a7..31734e09f6 100644 --- a/apps/remixdesktop/package.json +++ b/apps/remixdesktop/package.json @@ -1,6 +1,6 @@ { "name": "remixdesktop", - "version": "0.0.10-Alpha", + "version": "0.0.11-Alpha", "main": "build/main.js", "license": "MIT", "type": "commonjs", diff --git a/libs/remix-ui/workspace/src/lib/actions/workspace.ts b/libs/remix-ui/workspace/src/lib/actions/workspace.ts index 4c00042c4e..f98bb46e01 100644 --- a/libs/remix-ui/workspace/src/lib/actions/workspace.ts +++ b/libs/remix-ui/workspace/src/lib/actions/workspace.ts @@ -547,11 +547,9 @@ export const uploadFolder = async (target, targetFolder: string, cb?: (err: Erro } export const getWorkspaces = async (): Promise<{ name: string; isGitRepo: boolean; hasGitSubmodules: boolean; branches?: { remote: any; name: string }[]; currentBranch?: string }[]> | undefined => { - console.log('getWorkspaces') try { const workspaces: { name: string; isGitRepo: boolean; hasGitSubmodules: boolean; branches?: { remote: any; name: string }[]; currentBranch?: string }[] = await new Promise((resolve, reject) => { const workspacesPath = plugin.fileProviders.workspace.workspacesPath - console.log('workspacesPath', workspacesPath) plugin.fileProviders.browser.resolveDirectory('/' + workspacesPath, (error, items) => { if (error) { @@ -587,7 +585,6 @@ export const getWorkspaces = async (): Promise<{ name: string; isGitRepo: boolea ).then((workspacesList) => resolve(workspacesList)) }) }) - console.log('workspaces', workspaces) await plugin.setWorkspaces(workspaces) return workspaces } catch (e) {}