diff --git a/src/components/AppLayout.tsx b/src/components/AppLayout.tsx index fd5e979..7ca23d2 100644 --- a/src/components/AppLayout.tsx +++ b/src/components/AppLayout.tsx @@ -174,18 +174,26 @@ export default function AppLayout(props: AppLayoutProps): JSX.Element { {/* Background when navbar is opened */}
{prettyDate(item.release_date)}
- {prettyPrice(item.price, currencies, appLayout.currency)} + {prettyPrice( + item.price, + currencies, + item.price.currency.data.attributes.code + )}
+ {item.price.currency.data.attributes.code !== + appLayout.currency && ( +
+ {prettyPrice(item.price, currencies, appLayout.currency)}{" "}
+
+ (calculated)
+