fix logging

pull/5370/head
yann300 5 months ago
parent f6c060f328
commit 4a0ac52c82
  1. 2
      libs/remix-ui/workspace/src/lib/actions/workspace.ts

@ -220,7 +220,7 @@ export const populateWorkspace = async (
dispatch(cloneRepositorySuccess()) dispatch(cloneRepositorySuccess())
}).catch((e) => { }).catch((e) => {
dispatch(cloneRepositorySuccess()) dispatch(cloneRepositorySuccess())
plugin.call('notification', 'toast', 'error adding template ' + e.message || e) plugin.call('notification', 'toast', 'error adding template ' + (e.message || e))
}) })
}, 5000) }, 5000)
} else if (!isEmpty && !(isGitRepo && createCommit)) await loadWorkspacePreset(workspaceTemplateName, opts) } else if (!isEmpty && !(isGitRepo && createCommit)) await loadWorkspacePreset(workspaceTemplateName, opts)

Loading…
Cancel
Save