Skip to content

Commit

Permalink
clean up console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
al-rosenthal committed Jan 16, 2024
1 parent f877084 commit a23e458
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion api/src/repositories/submission-repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1234,7 +1234,6 @@ export class SubmissionRepository extends BaseRepository {
`;

const response = await this.connection.sql(sqlStatement, SubmissionRecordWithSecurityAndRootFeatureType);
console.log(response.rows);
return response.rows;
}

Expand Down
1 change: 0 additions & 1 deletion api/src/services/region-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ export class RegionService extends DBService {
*/
async calculateAndAddRegionsForSubmission(submissionId: number, intersectThreshold = 1): Promise<void> {
const regionIds = await this.regionRepository.calculateRegionsForASubmission(submissionId, intersectThreshold);
console.log(regionIds);
await this.regionRepository.insertSubmissionRegions(submissionId, regionIds);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ const UnreviewedSubmissionsTable = () => {
</Stack>
<Stack gap={2}>
{submissionRecords.map((submissionRecord) => {
console.log(submissionRecord.regions);
return (
<Card elevation={0} key={submissionRecord.submission_id}>
<CardHeader
Expand Down

0 comments on commit a23e458

Please sign in to comment.