We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71e67a5 commit a9cb077Copy full SHA for a9cb077
src/pages/software/egld-price-calculator/index.jsx
@@ -230,9 +230,14 @@ const EgldPriceCalculator = () => {
230
</CardContent>
231
</Card>
232
{priceDate ? (
233
- <Typography variant="subtitle1" gutterBottom>
234
- Last update: {priceDate.toLocaleString()}
235
- </Typography>
+ <>
+ <Typography variant="subtitle1" gutterBottom>
+ Last update: {priceDate.toLocaleString()}
236
+ </Typography>
237
+ <a href="https://coingecko.com" target="_blank" rel="noopener noreferrer">
238
+ Source
239
+ </a>
240
+ </>
241
) : null}
242
</Container>
243
<Snackbar open={!!error} autoHideDuration={6000} onClose={closeSnackbar}>
0 commit comments