Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
antonio-altr committed Mar 6, 2024
1 parent f3bb216 commit f0793ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/metadata/generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ export default function generate<R extends Route>(route: R, apiData?: ApiData<R>
network_title: getNetworkTitle(),
};

const compiledTitle = compileValue(templates.title.make(route.pathname), params);
//const compiledTitle = compileValue(templates.title.make(route.pathname), params);
//const title = compiledTitle ? compiledTitle + (config.meta.promoteBlockscoutInTitle ? ' | Blockscout' : '') : '';
const title = 'Prom Testnet Explorer'
const title = 'Prom Testnet Explorer';
const description = compileValue(templates.description.make(route.pathname), params);

const pageOgType = getPageOgType(route.pathname);
Expand Down

0 comments on commit f0793ec

Please sign in to comment.