From 91a302676a14d99270886215600b8e9a2173d241 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Oliveira?= Date: Tue, 3 Aug 2021 14:32:57 +0100 Subject: [PATCH] fix: typo --- .../src/pages/Customers/components/PhotosCard.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/new-lamassu-admin/src/pages/Customers/components/PhotosCard.js b/new-lamassu-admin/src/pages/Customers/components/PhotosCard.js index c76fd0d5..252f3964 100644 --- a/new-lamassu-admin/src/pages/Customers/components/PhotosCard.js +++ b/new-lamassu-admin/src/pages/Customers/components/PhotosCard.js @@ -49,11 +49,11 @@ const PhotosCard = memo(({ frontCameraData, txPhotosData }) => { R.compose(R.fromPairs, R.map(mapKeys), R.toPairs) ) - const filterByPhotoAvaiable = R.filter( + const filterByPhotoAvailable = R.filter( tx => !R.isNil(tx.date) && !R.isNil(tx.path) ) - const photosData = filterByPhotoAvaiable( + const photosData = filterByPhotoAvailable( addPhotoDir(standardizeKeys(R.append(frontCameraData, txPhotosData))) )