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(
1111 const { data } = ShopHooks . usePatrons ( shopAPIClient , year ) ;
1212 return data . map ( ( patron ) => (
1313 < 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!" } />
1616 </ Stack >
1717 ) ) ;
1818 } )
You can’t perform that action at this time.
0 commit comments