We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a923b4 commit 35fc779Copy full SHA for 35fc779
2 files changed
src/assets/team-logos/VTL.png
974 KB
src/components/TeamsList/index.tsx
@@ -83,7 +83,8 @@ function TeamsList({ teams }: TeamsListProps) {
83
// Added "RES" for the 7th player
84
const role = ["TOP", "JG", "MID", "ADC", "SUP", "RES", "RES"][index] || "RES";
85
86
- const profileUrl = `https://www.op.gg/summoners/br/${encodeURIComponent(memberNameSplit)}`;
+ // OP.GG uses - for tag separator in URLs
87
+ const profileUrl = `https://www.op.gg/summoners/br/${encodeURIComponent(memberNameSplit.replace('#', '-'))}`;
88
89
return (
90
<p
0 commit comments