Skip to content

Commit

Permalink
Remove unused console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
devleejb committed Aug 3, 2024
1 parent 067c2e7 commit 3f1e00a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion backend/src/workspaces/workspaces.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ export class WorkspacesController {
@Req() req: AuthroizedRequest,
@Param("workspace_slug") workspaceSlug: string
): Promise<FindWorkspaceResponse> {
console.log(encodeURI(workspaceSlug));
return this.workspacesService.findOneBySlug(req.user.id, encodeURI(workspaceSlug));
}

Expand Down

0 comments on commit 3f1e00a

Please sign in to comment.