@@ -277,7 +277,8 @@ export default function Home({ clientId }: HomeProps): ReactElement {
277277 container
278278 direction = "row"
279279 alignContent = "space-around"
280- justifyContent = "center" >
280+ justifyContent = "center"
281+ >
281282 { alert ? (
282283 < Grid item xs = { 11 } >
283284 < Alert severity = "error" > { alert } </ Alert >
@@ -294,7 +295,8 @@ export default function Home({ clientId }: HomeProps): ReactElement {
294295 sx = { { padding : theme . spacing ( 1 ) , marginBottom : theme . spacing ( 2 ) } }
295296 onClick = { ( ) => {
296297 router . push ( authorizeUrl ) ;
297- } } >
298+ } }
299+ >
298300 Authenticate with GitHub
299301 </ Button >
300302 </ Grid >
@@ -307,14 +309,16 @@ export default function Home({ clientId }: HomeProps): ReactElement {
307309 sx = { {
308310 padding : theme . spacing ( 0 ) ,
309311 textAlign : "center" ,
310- } } >
312+ } }
313+ >
311314 { repositoryData ? (
312315 < >
313316 < Grid
314317 container
315318 direction = "row"
316319 alignContent = "space-around"
317- justifyContent = "space-around" >
320+ justifyContent = "space-around"
321+ >
318322 < Stat
319323 icon = { mdiChatOutline }
320324 title = "Discussions"
@@ -364,7 +368,8 @@ export default function Home({ clientId }: HomeProps): ReactElement {
364368 direction = "row"
365369 alignContent = "space-around"
366370 justifyContent = "space-around"
367- sx = { { margin : theme . spacing ( 2 , 0 ) } } >
371+ sx = { { margin : theme . spacing ( 2 , 0 ) } }
372+ >
368373 < Grid item sm = { 12 } lg = { 6 } sx = { { padding : theme . spacing ( 1 , 2 ) } } >
369374 < Typography variant = "h4" noWrap >
370375 < Icon
@@ -381,7 +386,8 @@ export default function Home({ clientId }: HomeProps): ReactElement {
381386 style = { {
382387 width : "100%" ,
383388 height : 520 ,
384- } } >
389+ } }
390+ >
385391 < ResponsiveContainer width = "100%" height = "100%" >
386392 < LineChart data = { issuesByDay } >
387393 < XAxis dataKey = "date" />
@@ -417,7 +423,8 @@ export default function Home({ clientId }: HomeProps): ReactElement {
417423 style = { {
418424 width : "100%" ,
419425 height : 520 ,
420- } } >
426+ } }
427+ >
421428 < ResponsiveContainer width = "100%" height = "100%" >
422429 < LineChart data = { pullRequestsByDay } >
423430 < XAxis dataKey = "date" />
@@ -443,7 +450,8 @@ export default function Home({ clientId }: HomeProps): ReactElement {
443450 < Grid
444451 container
445452 alignContent = "space-around"
446- justifyContent = "space-around" >
453+ justifyContent = "space-around"
454+ >
447455 { status === Status . NoRepository ? (
448456 < Typography variant = "h4" noWrap >
449457 Please select a repository
0 commit comments