This person has contributed ¥1300 + ¥80 platform tip. On their profile, we're showing a $80 tip instead.
The problem comes from the API:
Query
{
account(slug: "ma_maru"){
memberOf(account: {slug: "ofitech"}){
nodes {
totalDonations {
valueInCents
currency
}
}
}
}
}
Result
{
"data": {
"account": {
"memberOf": {
"nodes": [
{
"totalDonations": {
"valueInCents": 8000,
"currency": "USD"
}
}
]
}
}
}
}