mirror of
https://github.com/web3privacy/web
synced 2024-10-15 18:26:27 +02:00
ups, fix syntax
This commit is contained in:
parent
0868a667dd
commit
462fe64a02
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ import * as config from '../config.yaml';
|
|||
|
||||
const { title, description, metaTitle, image } = Astro.props;
|
||||
|
||||
const titleFull = {(metaTitle || title) ? ((metaTitle || title) + ' | ' + config.title) : config.title}
|
||||
const titleFull = (metaTitle || title) ? ((metaTitle || title) + ' | ' + config.title) : config.title;
|
||||
|
||||
---
|
||||
|
||||
|
|
Loading…
Reference in a new issue