File tree Expand file tree Collapse file tree 2 files changed +4
-16
lines changed
packages/grant-explorer/src/features/contributors Expand file tree Collapse file tree 2 files changed +4
-16
lines changed Original file line number Diff line number Diff line change @@ -60,17 +60,11 @@ function TableHeader() {
60
60
61
61
function Table ( props : { contributions : Contribution [ ] } ) {
62
62
return (
63
- < div className = "bg-grey-75 rounded-lg p-2 py-1" >
64
- < div className = "mt-4 overflow-hidden" >
63
+ < div className = "rounded-lg p-2 py-1" >
64
+ < div className = "overflow-hidden" >
65
65
< div className = "mx-auto" >
66
66
< div >
67
67
< table className = "w-full text-left" >
68
- < thead className = "font-sans text-lg" >
69
- < tr >
70
- < th > Project</ th >
71
- < th > Donation</ th >
72
- </ tr >
73
- </ thead >
74
68
< tbody >
75
69
{ props . contributions . length > 0 &&
76
70
props . contributions
@@ -105,13 +99,7 @@ function Table(props: { contributions: Contribution[] }) {
105
99
< Link
106
100
className = { `underline inline-block lg:pr-2 lg:max-w-[300px] max-w-[75px] 2xl:max-w-fit truncate` }
107
101
title = { contribution . projectId . trim ( ) }
108
- to = { `/round/${
109
- contribution . chainId
110
- } /${ contribution . roundId
111
- . toString ( )
112
- . toLowerCase ( ) } /${
113
- contribution . applicationId
114
- } `}
102
+ to = { `/projects/${ contribution . projectId } ` }
115
103
target = "_blank"
116
104
>
117
105
{ contribution . projectId . trim ( ) }
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import {
17
17
} from "common" ;
18
18
import { Contribution } from "data-layer" ;
19
19
import { normalize } from "viem/ens" ;
20
- import { DirectDonationsTable } from "./DirectDonationTable " ;
20
+ import { DirectDonationsTable } from "./DirectDonationsTable " ;
21
21
22
22
const DonationHistoryBanner = lazy (
23
23
( ) => import ( "../../assets/DonationHistoryBanner" )
You can’t perform that action at this time.
0 commit comments