removed await

pull/3090/head
Aniket-Engg 2 years ago committed by Aniket
parent f3094c4e35
commit cc4e803e54
  1. 2
      libs/remix-ui/workspace/src/lib/actions/workspace.ts

@ -93,7 +93,7 @@ export const createWorkspace = async (workspaceName: string, workspaceTemplateNa
await plugin.call('notification', 'toast', 'Please provide GitHub details in the settings section to start committing and branching.') await plugin.call('notification', 'toast', 'Please provide GitHub details in the settings section to start committing and branching.')
} else { } else {
// commit the template as first commit // commit the template as first commit
await plugin.call('notification', 'toast', 'Creating initial git commit ...') plugin.call('notification', 'toast', 'Creating initial git commit ...')
const status = await plugin.call('dGitProvider', 'status', { ref: 'HEAD' }) const status = await plugin.call('dGitProvider', 'status', { ref: 'HEAD' })
Promise.all( Promise.all(
status.map(([filepath, , worktreeStatus]) => status.map(([filepath, , worktreeStatus]) =>

Loading…
Cancel
Save