tangled
alpha
login
or
join now
rocksky.app
/
rocksky
96
fork
atom
A decentralized music tracking and discovery platform built on AT Protocol 🎵
rocksky.app
spotify
atproto
lastfm
musicbrainz
scrobbling
listenbrainz
96
fork
atom
overview
issues
7
pulls
pipelines
[web] fix link issue
tsiry-sandratraina.com
8 months ago
45640933
49caf69d
+5
-3
1 changed file
expand all
collapse all
unified
split
apps
web
src
pages
home
nowplayings
NowPlayings.tsx
+5
-3
apps/web/src/pages/home/nowplayings/NowPlayings.tsx
···
227
227
<div className="flex flex-col items-center flex-1">
228
228
{currentlyPlaying?.trackUri && (
229
229
<Link
230
230
-
to={`/${currentlyPlaying?.trackUri.split("at://")[1]}`}
230
230
+
to={`/${currentlyPlaying?.trackUri.split("at://")[1].replace("app.rocksky", "")}`}
231
231
>
232
232
<Cover
233
233
src={currentlyPlaying?.albumArt}
···
237
237
)}
238
238
{currentlyPlaying?.trackUri && (
239
239
<Link
240
240
-
to={`/${currentlyPlaying?.trackUri.split("at://")[1]}`}
240
240
+
to={`/${currentlyPlaying?.trackUri.split("at://")[1].replace("app.rocksky", "")}`}
241
241
>
242
242
<TrackTitle>{currentlyPlaying?.title}</TrackTitle>
243
243
</Link>
···
264
264
{!currentlyPlaying?.trackUri && (
265
265
<TrackTitle>{currentlyPlaying?.title}</TrackTitle>
266
266
)}
267
267
-
<Link to={`/${currentlyPlaying?.artistUri?.split("at://")[1]}`}>
267
267
+
<Link
268
268
+
to={`/${currentlyPlaying?.artistUri?.split("at://")[1].replace("app.rocksky", "")}`}
269
269
+
>
268
270
<TrackArtist>{currentlyPlaying?.artist}</TrackArtist>
269
271
</Link>
270
272
</ModalBody>