e6519a7dd1
* add country code to meta tag * use blocked paths header * proper types * add test * Update functions/components/metaTagInjector.ts Co-authored-by: Zach Pomerantz <zzmp@uniswap.org> * Update functions/components/metaTagInjector.ts Co-authored-by: Zach Pomerantz <zzmp@uniswap.org> * Update src/pages/App.tsx Co-authored-by: Zach Pomerantz <zzmp@uniswap.org> * pr suggestions * skip failing e2e * revert test change * take file from main --------- Co-authored-by: Zach Pomerantz <zzmp@uniswap.org>
15 lines
480 B
TypeScript
15 lines
480 B
TypeScript
/* eslint-disable import/no-unused-modules */
|
|
import getCollection from '../../utils/getCollection'
|
|
import { getMetadataRequest } from '../../utils/getRequest'
|
|
|
|
export const onRequest: PagesFunction = async ({ params, request, next }) => {
|
|
const res = next()
|
|
try {
|
|
const { index } = params
|
|
const collectionAddress = index?.toString()
|
|
return getMetadataRequest(res, request, () => getCollection(collectionAddress, request.url))
|
|
} catch (e) {
|
|
return res
|
|
}
|
|
}
|