File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,9 @@ function Card({ repo }: Props) {
37
37
</ h2 >
38
38
</ div >
39
39
40
- < h6 className = "my-5 text-2023-manga-2 text-lg" > { emojify ( repo . description ) } </ h6 >
40
+ < h6 className = "my-5 text-2023-manga-2 text-lg" >
41
+ { emojify ( repo . description ) }
42
+ </ h6 >
41
43
42
44
< div className = "card-actions gap-y-3" >
43
45
{ repo . topics . map ( ( topic : string ) => (
@@ -112,7 +114,7 @@ function Card({ repo }: Props) {
112
114
</ div >
113
115
< div
114
116
id = "tooltip"
115
- className = "hidden group-hover:block absolute bg-2023-void-2 text-2023-bavarian-gold-2 px-2 py-1 rounded-md"
117
+ className = "hidden group-hover:block absolute text-sm bg-2023-void-2 text-2023-bavarian-gold-2 px-2 py-1 rounded-md"
116
118
>
117
119
Checkout all open issues here!
118
120
</ div >
Original file line number Diff line number Diff line change @@ -56,8 +56,6 @@ export const getServerSideProps: GetServerSideProps<Props> = async ctx => {
56
56
57
57
const repos = await res . json ( ) ;
58
58
59
- console . log ( repos ) ;
60
-
61
59
repos . items = repos . items . filter ( ( repo : RepoItem ) => ! repo . archived ) ;
62
60
63
61
if ( repos . items . length < 1 ) {
You can’t perform that action at this time.
0 commit comments