feat: add data handling to EarnAndBurn

This commit is contained in:
Arvid Norlin
2024-05-14 16:35:44 +02:00
parent 7ad8726633
commit 9ef9de840c
10 changed files with 391 additions and 26 deletions

View File

@@ -39,7 +39,7 @@ function DynamicComponent({ component, props }: AccountPageContentProps) {
case DynamicContentComponents.expiring_points:
return <ExpiringPoints />
case DynamicContentComponents.earn_and_burn:
return <EarnAndBurn />
return <EarnAndBurn lang={props.lang} />
default:
return null
}