Skip to content

Commit

Permalink
fix(front): uses correct property name for keywords (#1163)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgrebb committed Jan 17, 2024
1 parent 5d9229a commit aa5e538
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions front/src/lib/components/general/Meta.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* @property {string} metaRobots - The meta robots tag.
* @property {string} canonicalURL - The canonical URL for the page.
* @property {string} metaViewport - The meta viewport settings.
* @property {string} metaKeywords - The meta keywords for the page.
* @property {string} keywords - The meta keywords for the page.
* @property {Object[]} metaSocial - The array of social network information.
* @property {string} updatedAt - The last update time for the page.
* @property {string} publishedAt - The published time for the page.
Expand All @@ -34,7 +34,7 @@
metaRobots,
canonicalURL,
metaViewport,
metaKeywords,
keywords,
metaSocial,
updatedAt,
publishedAt,
Expand Down Expand Up @@ -75,7 +75,7 @@
{
name: 'keywords',
content:
metaKeywords ||
keywords ||
'Dan Grebb, dgrebb, software, engineer, volunteer, craft, developer, web, Philadelphia, Pennsylvania',
},
{
Expand Down

0 comments on commit aa5e538

Please sign in to comment.