ci-run-20250918-2021 #28

Merged
Nicholai merged 35 commits from ci-run-20250918-2021 into main 2025-10-30 08:10:55 +00:00
Showing only changes of commit 0790f7f01a - Show all commits

View File

@ -30,7 +30,7 @@ export function ArtistPortfolio({ artistId }: ArtistPortfolioProps) {
// Fetch artist data from API
const { data: artist, isLoading, error } = useArtist(artistId)
const { data: flashItems = [] } = useFlash(artistId)
const { data: flashItems = [] } = useFlash(artist?.id)
// keep a reference to the last focused thumbnail so we can return focus on modal close
const lastFocusedRef = useRef<HTMLElement | null>(null)