ups, fix syntax

This commit is contained in:
tree🌴 2024-02-25 22:21:55 +01:00 committed by GitHub
parent 0868a667dd
commit 462fe64a02
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
---