fix related tab sizing (#1484)

This commit is contained in:
jeffvli
2026-01-03 01:19:37 -08:00
parent ace4c77bdc
commit 0336f4afea
2 changed files with 2 additions and 3 deletions
@@ -36,10 +36,10 @@ export const JoinedArtists = ({
for (const artist of artists) {
const name = artist.name;
// Avoid an infinite loop when `artist.name` is an empty string.
if (!name) continue;
const regex = new RegExp(escapeRegex(name), 'gi');
let match: null | RegExpExecArray = null;
while ((match = regex.exec(artistName)) !== null) {
@@ -1,6 +1,5 @@
.queue-container {
position: relative;
display: flex;
width: 100%;
min-width: 0;
height: 100%;