We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1315c5 commit d9db3d9Copy full SHA for d9db3d9
packages/app/src/app/components/CreateNewSandbox/CreateSandbox/Import/Import.tsx
@@ -115,8 +115,9 @@ export const Import = () => {
115
autoWidth
116
style={{ fontSize: 11 }}
117
disabled={!transformedUrl}
118
- onClick={() => {
119
- actions.git.importFromGithub(gitHubToSandboxUrl(url));
+ onClick={async () => {
+ await actions.git.importFromGithub(gitHubToSandboxUrl(url));
120
+ actions.modals.newSandboxModal.close();
121
}}
122
>
123
Import and Fork
0 commit comments