Skip to content

Commit

Permalink
plusplus
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnaud AMBROSELLI committed Apr 5, 2024
1 parent 6d11b14 commit 682f54a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions api-node/src/controllers/hubeau-prelevement.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ import helmet from 'helmet';
import { z } from 'zod';
import fs from 'fs';
import { catchErrors } from '../middlewares/errors';
import { type CustomError } from '~/types/error';
import { type udis as UdiType } from '@prisma/client';
import { fetchDrinkingWaterPrelevement } from '~/aggregators/drinking_water';
import dayjs from 'dayjs';

Expand Down Expand Up @@ -86,7 +84,7 @@ router.get(
?.map(
(reseau) => `${reseau.code} - ${reseau.nom} (${reseau.debit})`,
)
.join('<br />') || '',
.join('<br />') ?? '',
)
.replace(
'{{RESULTS}}',
Expand Down

0 comments on commit 682f54a

Please sign in to comment.