Skip to content

Commit e6f04fc

Browse files
authored
fix(space): add missing slash for delete endpoint (#31)
1 parent a5520b6 commit e6f04fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/Spaces.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class Spaces {
4848
*/
4949
async delete(spaceId) {
5050
return this._request.delete({
51-
endpoint: `${this.route}${spaceId}`,
51+
endpoint: `${this.route}/${spaceId}`,
5252
});
5353
}
5454

0 commit comments

Comments
 (0)