diff --git a/src/components/SettingView.tsx b/src/components/SettingView.tsx index 4fffe3b..1b9c21e 100644 --- a/src/components/SettingView.tsx +++ b/src/components/SettingView.tsx @@ -17,7 +17,7 @@ const SettingView = () => { const { data: session } = useSession(); return ( -
+ | {t("common.date")} | -+ | {t("common.description")} | -+ | {t("common.amount")} | -+ | {getDateString(subscription.createdAt)} | +{subscription.description} | - {subscription.description} - | -- {getCurrencySymbol( - subscription.currency.toLocaleUpperCase() - )} + {getCurrencySymbol(subscription.currency.toLocaleUpperCase())} {subscription.amount / 100} | - + {t("setting.billing.view-receipt")} |
---|