Skip to content

Commit

Permalink
fix: ts (#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Bouquillon authored Jul 18, 2023
1 parent af1bbae commit b30695f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion report/www/src/components/UrlHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const UrlHeader = ({
const updateDate =
lhrReports && lhrReports.length && lhrReports[0] && lhrReports[0].fetchTime;
const title = config.urls.find(
(url2) => url2.url === url && url2.title
(url2) => url2.url === url && url2?.title
)?.title;
return (
<Callout hasInfoIcon={false} className="fr-mb-3w">
Expand Down

0 comments on commit b30695f

Please sign in to comment.