fix: remove extra utm_source query

Signed-off-by: Isaac <git@eartharoid.me>
This commit is contained in:
Isaac
2024-09-21 22:01:02 +01:00
committed by GitHub
parent 9224ceda23
commit d675e8ee53

View File

@@ -77,7 +77,7 @@ function PhotoInformation({ info, url, api }) {
// unsplash credit
if (info.photographerURL && info.photographerURL !== '' && !info.offline && api) {
photo = (
<a href={info.photoURL + '?utm_source=mue'} target="_blank" rel="noopener noreferrer">
<a href={info.photoURL} target="_blank" rel="noopener noreferrer">
{photo}
</a>
);
@@ -171,7 +171,7 @@ function PhotoInformation({ info, url, api }) {
<span id="infoSource">
{info.photoURL ? (
<a
href={info.photoURL + '?utm_source=mue'}
href={info.photoURL}
target="_blank"
rel="noopener noreferrer"
className="link"