From cebce2d5efb42e9b54036a8f539b8492d280f815 Mon Sep 17 00:00:00 2001 From: Isaac Date: Tue, 20 Dec 2022 16:41:02 +0000 Subject: [PATCH] fix: don't set location to "N/A" --- src/components/widgets/background/Background.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/widgets/background/Background.jsx b/src/components/widgets/background/Background.jsx index 813067fe..ca707a56 100644 --- a/src/components/widgets/background/Background.jsx +++ b/src/components/widgets/background/Background.jsx @@ -293,7 +293,7 @@ export default class Background extends PureComponent { photoInfo: { hidden: false, credit: randomPhoto.photographer, - location: randomPhoto.location || 'N/A', + location: randomPhoto.location, }, }); } @@ -313,7 +313,7 @@ export default class Background extends PureComponent { photoInfo: { hidden: false, credit: randomPhoto.photographer, - location: randomPhoto.location || 'N/A', + location: randomPhoto.location, }, }); } else { @@ -328,7 +328,7 @@ export default class Background extends PureComponent { photoInfo: { hidden: false, credit: randomPhoto.photographer, - location: randomPhoto.location || 'N/A', + location: randomPhoto.location, }, }); }