fix msol token page 404

This commit is contained in:
saml33 2022-12-27 21:43:36 +11:00
parent 0d2d597c9e
commit d4dde2fb44
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ export const getStaticPaths = async () => {
const response = await fetch(url)
const data = await response.json()
const paths = data.map((t: any) => ({
params: { token: t.symbol },
params: { token: t.symbol.toUpperCase() },
}))
return { paths, fallback: false }