Skip to content

Commit 35fc779

Browse files
committed
Add VTL
1 parent 0a923b4 commit 35fc779

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

src/assets/team-logos/VTL.png

974 KB
Loading

src/components/TeamsList/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ function TeamsList({ teams }: TeamsListProps) {
8383
// Added "RES" for the 7th player
8484
const role = ["TOP", "JG", "MID", "ADC", "SUP", "RES", "RES"][index] || "RES";
8585

86-
const profileUrl = `https://www.op.gg/summoners/br/${encodeURIComponent(memberNameSplit)}`;
86+
// OP.GG uses - for tag separator in URLs
87+
const profileUrl = `https://www.op.gg/summoners/br/${encodeURIComponent(memberNameSplit.replace('#', '-'))}`;
8788

8889
return (
8990
<p

0 commit comments

Comments
 (0)