From 01381d158d040800279591605244b7b4a5198d6b Mon Sep 17 00:00:00 2001
From: Aaron Yarborough <3855819+AaronJY@users.noreply.github.com>
Date: Sat, 29 Mar 2025 11:41:19 +0000
Subject: [PATCH] chore: refactor
---
src/components/Book/Book.jsx | 4 ++--
src/lib/content.js | 2 +-
src/lib/helpers.js | 10 +++++-----
src/pages/index.js | 2 +-
src/pages/library/[slug].js | 4 ++--
src/pages/library/index.js | 2 +-
6 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/src/components/Book/Book.jsx b/src/components/Book/Book.jsx
index 2b5f6fe..868a0b7 100644
--- a/src/components/Book/Book.jsx
+++ b/src/components/Book/Book.jsx
@@ -3,10 +3,10 @@ import { NextSeo } from 'next-seo'
import Image from 'next/image'
import Link from 'next/link'
import React from 'react'
-import style from "./Book.module.css";
+import style from './Book.module.css'
import ExternalLink from '../ExternalLink/ExternalLink'
-function Book({ attributes, html }) {
+function Book ({ attributes, html }) {
return (
<>
{attributes.title}
by {attributes.author}
diff --git a/src/lib/content.js b/src/lib/content.js
index d3b08f9..4a9e2d7 100644
--- a/src/lib/content.js
+++ b/src/lib/content.js
@@ -66,7 +66,7 @@ export function getContentTags (contentPath) {
for (const entry of entries) {
if (!entry.attributes.tags) { continue }
- const tags = entry.attributes.tags;
+ const tags = entry.attributes.tags
for (const tag of tags) {
allTags[tag] = !allTags[tag] ? 1 : allTags[tag] + 1
}
diff --git a/src/lib/helpers.js b/src/lib/helpers.js
index e6f1287..928020a 100644
--- a/src/lib/helpers.js
+++ b/src/lib/helpers.js
@@ -11,9 +11,9 @@ export function formatDate (date) {
/**
* Silliness to make sure dates don't get passed to the
* page function below as [object Object]
- * @param {*} obj
- * @returns
+ * @param {*} obj
+ * @returns
*/
-export function stringifyAndParse(obj) {
- return JSON.parse(JSON.stringify(obj));
-}
\ No newline at end of file
+export function stringifyAndParse (obj) {
+ return JSON.parse(JSON.stringify(obj))
+}
diff --git a/src/pages/index.js b/src/pages/index.js
index 389fb82..24bcbb4 100644
--- a/src/pages/index.js
+++ b/src/pages/index.js
@@ -33,7 +33,7 @@ export default function Home ({ postEntries }) {
diff --git a/src/pages/library/[slug].js b/src/pages/library/[slug].js
index 4631999..8c6f762 100644
--- a/src/pages/library/[slug].js
+++ b/src/pages/library/[slug].js
@@ -5,8 +5,8 @@ import Book from '@/components/Book/Book'
import { stringifyAndParse } from '@/lib/helpers'
export const getStaticPaths = () => getStaticEntryPaths('./content/books')
-export const getStaticProps = (ctx) =>
- stringifyAndParse(getStaticEntryProps('./content/books', ctx));
+export const getStaticProps = (ctx) =>
+ stringifyAndParse(getStaticEntryProps('./content/books', ctx))
export default function LibrarySingle ({ attributes, html }) {
return (
diff --git a/src/pages/library/index.js b/src/pages/library/index.js
index 840db2f..2ea0d23 100644
--- a/src/pages/library/index.js
+++ b/src/pages/library/index.js
@@ -17,7 +17,7 @@ export const getStaticProps = () => {
props: {
bookEntries: stringifyAndParse(bookEntries)
}
- };
+ }
}
export default function Library ({ bookEntries }) {