Fixed bug when missing translation
This commit is contained in:
parent
36803b4b1f
commit
a0c69c3876
|
@ -230,7 +230,7 @@ export default function LibrarySlug(props: LibrarySlugProps): JSX.Element {
|
||||||
appLayout.currency && (
|
appLayout.currency && (
|
||||||
<p>
|
<p>
|
||||||
{prettyPrice(item.price, currencies, appLayout.currency)}{" "}
|
{prettyPrice(item.price, currencies, appLayout.currency)}{" "}
|
||||||
<br />({langui.calculated.toLowerCase()})
|
<br />({langui.calculated?.toLowerCase()})
|
||||||
</p>
|
</p>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue