diff --git a/apps/api/src/app/import/import.service.ts b/apps/api/src/app/import/import.service.ts index 5ec3368ab..f66676f70 100644 --- a/apps/api/src/app/import/import.service.ts +++ b/apps/api/src/app/import/import.service.ts @@ -755,7 +755,9 @@ export class ImportService { if (!assetProfile?.name) { const assetProfileInImport = assetProfileWithMarketDataDto?.find( (profile) => { - return profile.dataSource === dataSource && profile.symbol === symbol; + return ( + profile.dataSource === dataSource && profile.symbol === symbol + ); } );