File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ function SponsorLinks() {
26
26
{ diamondLinks . map ( ( item , index ) => {
27
27
return (
28
28
< div key = { index } className = { `${ logodiv } ` }
29
- // href={item.href}
30
29
onClick = { ( ) => {
31
30
setInformation ( item ) ;
32
31
setShowModal ( true ) ;
@@ -49,7 +48,6 @@ function SponsorLinks() {
49
48
setInformation ( item ) ;
50
49
setShowModal ( true ) ;
51
50
} }
52
- // href={item.href}
53
51
>
54
52
< img className = "h-6" src = { item . svg } alt = { item . alt } />
55
53
</ div >
@@ -63,9 +61,14 @@ function SponsorLinks() {
63
61
< h2 className = "text-4xl font-black" > Silver Sponsors</ h2 >
64
62
{ silverLinks . map ( ( item , index ) => {
65
63
return (
66
- < a key = { index } className = "h-14" href = { item . href } >
64
+ < div key = { index } className = "h-14"
65
+ onClick = { ( ) => {
66
+ setInformation ( item ) ;
67
+ setShowModal ( true ) ;
68
+ } }
69
+ >
67
70
< img className = "h-8" src = { item . svg } alt = { item . alt } />
68
- </ a >
71
+ </ div >
69
72
) ;
70
73
} ) }
71
74
</ div >
You can’t perform that action at this time.
0 commit comments