mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-11 19:05:41 +00:00
Fixed type issue with dashboard
This commit is contained in:
parent
3b837eeca5
commit
b2a2ad59ce
@ -21,7 +21,7 @@ export async function getDashboardData() {
|
||||
const metrics: Metric[] = [
|
||||
{
|
||||
title: "Minutes listened",
|
||||
value: minutesListened,
|
||||
value: +minutesListened,
|
||||
group: "Spotify",
|
||||
href: "https://open.spotify.com/?"
|
||||
},
|
||||
@ -39,31 +39,31 @@ export async function getDashboardData() {
|
||||
},
|
||||
{
|
||||
title: "Repos",
|
||||
value: totalRepos,
|
||||
value: +totalRepos,
|
||||
group: "GitHub",
|
||||
href: "https://github.com/r-freeman?tab=repositories"
|
||||
},
|
||||
{
|
||||
title: "Followers",
|
||||
value: totalFollowers,
|
||||
value: +totalFollowers,
|
||||
group: "GitHub",
|
||||
href: "https://github.com/r-freeman?tab=followers"
|
||||
},
|
||||
{
|
||||
title: "Stars",
|
||||
value: totalStars,
|
||||
value: +totalStars,
|
||||
group: "GitHub",
|
||||
href: "https://github.com/r-freeman/"
|
||||
},
|
||||
{
|
||||
title: "Total articles",
|
||||
value: totalArticles,
|
||||
value: +totalArticles,
|
||||
group: "Blog",
|
||||
href: "/writing"
|
||||
},
|
||||
{
|
||||
title: "Total article views",
|
||||
value: totalArticleViews,
|
||||
value: +totalArticleViews,
|
||||
group: "Blog",
|
||||
href: "/writing"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user