Skip to content

Commit

Permalink
style(js): Use single quote for the string in the console.error
Browse files Browse the repository at this point in the history
  • Loading branch information
zak39 committed Oct 15, 2024
1 parent 74e8ada commit 75c9f7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/spaceService.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export function addGroupToWorkspace(spaceId, gid) {
'Error groups',
`Impossible to attach the ${error} group to workspace. May be a problem with the connection ?`,
5000)
console.error(`Impossible to attach the group to workspace. May be a problem with the connection ?`, gid, error)
console.error('Impossible to attach the group to workspace. May be a problem with the connection ?', gid, error)
throw new AddGroupToGroupfolderError('Error to add Space Manager group in the groupfolder')
})
}

0 comments on commit 75c9f7f

Please sign in to comment.