Browse Source

Refactoring

pull/4360/head
Thomas Kaul 2 months ago
parent
commit
e4ef2d87e8
  1. 4
      apps/api/src/app/export/export.service.ts

4
apps/api/src/app/export/export.service.ts

@ -50,8 +50,8 @@ export class ExportService {
Platform: platform Platform: platform
}) => { }) => {
if ( if (
!platforms.some(({ id: currentId }) => { !platforms.some(({ id: currentPlatformId }) => {
return currentId === platform.id; return currentPlatformId === platform.id;
}) })
) { ) {
platforms.push(platform); platforms.push(platform);

Loading…
Cancel
Save