File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ func (r *RootCmd) shareWorkspace(orgContext *OrganizationContext) *serpent.Comma
104
104
}
105
105
}
106
106
if userID == "" {
107
- return xerrors .Errorf ("Could not find user %s in the organization %s" , username , org .Name )
107
+ return xerrors .Errorf ("could not find user %s in the organization %s" , username , org .Name )
108
108
}
109
109
110
110
workspaceRole , err := stringToWorkspaceRole (role )
@@ -139,7 +139,7 @@ func (r *RootCmd) shareWorkspace(orgContext *OrganizationContext) *serpent.Comma
139
139
}
140
140
141
141
if orgGroup == nil {
142
- return xerrors .Errorf ("Could not find group named %s belonging to the organization %s" , groupName , org .Name )
142
+ return xerrors .Errorf ("could not find group named %s belonging to the organization %s" , groupName , org .Name )
143
143
}
144
144
145
145
workspaceRole , err := stringToWorkspaceRole (role )
@@ -161,7 +161,7 @@ func (r *RootCmd) shareWorkspace(orgContext *OrganizationContext) *serpent.Comma
161
161
162
162
workspaceACL , err := client .WorkspaceACL (inv .Context (), workspace .ID )
163
163
if err != nil {
164
- return xerrors .Errorf ("Could not fetch current workspace ACL after sharing %w" , err )
164
+ return xerrors .Errorf ("could not fetch current workspace ACL after sharing %w" , err )
165
165
}
166
166
167
167
outputRows := make ([]workspaceShareRow , 0 )
You can’t perform that action at this time.
0 commit comments