Was accidentally bootstrapping new layout twice (#1441)

This commit is contained in:
Evan Simkowitz 2024-12-09 15:11:02 -08:00 committed by GitHub
parent 878a7285ab
commit 6a3f72830b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,11 +30,6 @@ func (svc *WorkspaceService) CreateWorkspace(ctx context.Context) (string, error
if err != nil {
return "", fmt.Errorf("error creating workspace: %w", err)
}
err = wcore.BootstrapNewWorkspaceLayout(ctx, newWS)
if err != nil {
return newWS.OID, fmt.Errorf("error bootstrapping new workspace layout: %w", err)
}
return newWS.OID, nil
}