From 735d0f552bd075a3269e54fa6c4bba1356eebaea Mon Sep 17 00:00:00 2001 From: Will Boyd Date: Mon, 26 Feb 2024 12:42:10 -0500 Subject: [PATCH] Indentation fix --- src/frontmatter/tags.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontmatter/tags.js b/src/frontmatter/tags.js index 8a2b23c..0b53fd8 100644 --- a/src/frontmatter/tags.js +++ b/src/frontmatter/tags.js @@ -8,5 +8,5 @@ module.exports = (post) => { .filter(category => category.$.domain === 'post_tag') .map(({ $: attributes }) => decodeURIComponent(attributes.nicename)); - return categories; + return categories; };