tangled
alpha
login
or
join now
t1c.dev
/
rocksky
forked from
rocksky.app/rocksky
2
fork
atom
A decentralized music tracking and discovery platform built on AT Protocol 🎵
2
fork
atom
overview
issues
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
<div className="flex flex-col items-center flex-1">
228
{currentlyPlaying?.trackUri && (
229
<Link
230
-
to={`/${currentlyPlaying?.trackUri.split("at://")[1]}`}
231
>
232
<Cover
233
src={currentlyPlaying?.albumArt}
···
237
)}
238
{currentlyPlaying?.trackUri && (
239
<Link
240
-
to={`/${currentlyPlaying?.trackUri.split("at://")[1]}`}
241
>
242
<TrackTitle>{currentlyPlaying?.title}</TrackTitle>
243
</Link>
···
264
{!currentlyPlaying?.trackUri && (
265
<TrackTitle>{currentlyPlaying?.title}</TrackTitle>
266
)}
267
-
<Link to={`/${currentlyPlaying?.artistUri?.split("at://")[1]}`}>
0
0
268
<TrackArtist>{currentlyPlaying?.artist}</TrackArtist>
269
</Link>
270
</ModalBody>
···
227
<div className="flex flex-col items-center flex-1">
228
{currentlyPlaying?.trackUri && (
229
<Link
230
+
to={`/${currentlyPlaying?.trackUri.split("at://")[1].replace("app.rocksky", "")}`}
231
>
232
<Cover
233
src={currentlyPlaying?.albumArt}
···
237
)}
238
{currentlyPlaying?.trackUri && (
239
<Link
240
+
to={`/${currentlyPlaying?.trackUri.split("at://")[1].replace("app.rocksky", "")}`}
241
>
242
<TrackTitle>{currentlyPlaying?.title}</TrackTitle>
243
</Link>
···
264
{!currentlyPlaying?.trackUri && (
265
<TrackTitle>{currentlyPlaying?.title}</TrackTitle>
266
)}
267
+
<Link
268
+
to={`/${currentlyPlaying?.artistUri?.split("at://")[1].replace("app.rocksky", "")}`}
269
+
>
270
<TrackArtist>{currentlyPlaying?.artist}</TrackArtist>
271
</Link>
272
</ModalBody>