Compare commits
No commits in common. "main" and "v0.1.0" have entirely different histories.
2
go.mod
2
go.mod
|
@ -1,5 +1,5 @@
|
|||
module git.chandlerswift.com/chandlerswift/bannergen
|
||||
|
||||
go 1.23.0
|
||||
go 1.23.4
|
||||
|
||||
require golang.org/x/image v0.23.0
|
||||
|
|
|
@ -70,10 +70,10 @@
|
|||
const competition = event.competitions[0];
|
||||
console.log(competition);
|
||||
const params = new URLSearchParams({
|
||||
left_logo: competition.competitors[1].team.logo,
|
||||
right_logo: competition.competitors[0].team.logo,
|
||||
left_color: competition.competitors[1].team.color,
|
||||
right_color: competition.competitors[0].team.color,
|
||||
left_logo: competition.competitors[0].team.logo,
|
||||
right_logo: competition.competitors[1].team.logo,
|
||||
left_color: competition.competitors[0].team.color,
|
||||
right_color: competition.competitors[1].team.color,
|
||||
});
|
||||
|
||||
const a = document.createElement('a');
|
||||
|
|
Loading…
Reference in a new issue