Skip to content

Commit

Permalink
Remove a couple unwanted console.logs (#673)
Browse files Browse the repository at this point in the history
Remove console logs
  • Loading branch information
jeffdaley authored Apr 15, 2024
1 parent 52bbe69 commit a0ecee2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion web/app/routes/authenticated/projects/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export default class AuthenticatedProjectsIndexRoute extends Route {
};

async model(params: AuthenticatedProjectsIndexRouteParams) {
console.log("params", params);
const payload = await this.fetchSvc
.fetch(
`/api/${this.configSvc.config.api_version}/projects?status=${
Expand Down
1 change: 0 additions & 1 deletion web/app/serializers/group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export default class GroupSerializer extends JSONSerializer {
* the "No results found" message in the PeopleSelect.
*/
if (!payload.results) return { data: [] };
console.log(payload.results);
const groups = payload.results.map((g) => {
return {
id: g.email,
Expand Down

0 comments on commit a0ecee2

Please sign in to comment.