mirror of
https://github.com/mue/mue.git
synced 2026-07-10 22:14:39 +02:00
fix: remove extra utm_source query
Signed-off-by: Isaac <git@eartharoid.me>
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user