Skip to content

Commit

Permalink
use underscore for unused const
Browse files Browse the repository at this point in the history
  • Loading branch information
hotzevzl committed Apr 23, 2024
1 parent 6f56d59 commit ca001d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export class FeatureAmountUploadService {
}): Promise<Left<any> | Right<GeoFeature[]>> {
//Because feature CSV files are bound to be increasingly larger, this can cause problems when trying to save a big
//JSONB value into postgres eventually crashing due to an memory error, so the CSV file is ignored for the api event
const { fileBuffer, ...apiEventData } = data;
const { fileBuffer: _fileBuffer, ...apiEventData } = data;
await this.events.submittedEvent(data.projectId, apiEventData);

const apiQueryRunner = this.apiDataSource.createQueryRunner();
Expand Down

0 comments on commit ca001d6

Please sign in to comment.