File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/shop/src/components/features Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ const InnerPatronList: React.FC<{ year: number }> = ErrorBoundary.with(
11
11
const { data } = ShopHooks . usePatrons ( shopAPIClient , year ) ;
12
12
return data . map ( ( patron ) => (
13
13
< Stack key = { patron . name } spacing = { 1 } sx = { { my : 2 } } >
14
- < Typography variant = "h6" fontWeight = "700" children = { patron . name } />
15
- { patron . contribution_message && < Typography variant = "subtitle1" children = { patron . contribution_message } /> }
14
+ < Typography variant = "h5" sx = { ( theme ) => ( { fontWeight : 400 , color : theme . palette . primary . dark } ) } children = { patron . name } />
15
+ < Typography variant = "subtitle1" children = { patron . contribution_message || "Weave with Python!" } />
16
16
</ Stack >
17
17
) ) ;
18
18
} )
You can’t perform that action at this time.
0 commit comments