Skip to content

Commit

Permalink
avoid leaking credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
Hassan Wari authored and Hassan Wari committed Jan 16, 2025
1 parent 2dea0d1 commit bd70186
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shared/lib/services/proxy.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class ProxyService {
break;
}
default: {
throw new Error(`Unhandled connection.credentials for: ${connection.credentials}`);
throw new Error(`Unhandled connection.credentials for: ${(connection.credentials as any).type}`);
}
}

Expand Down

0 comments on commit bd70186

Please sign in to comment.