aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Wang2020-07-20 14:02:17 -0700
committerNathan Wang2020-07-20 14:02:17 -0700
commitdf576bae029d0e22f5e0f6e4a4954db4485b90ef (patch)
treee767976dee39cf2cd7544c532160916d770a0095
parentfca5d0d3df3ce38fcc6593fa3f17cbb1179ccccb (diff)
bugfix
-rw-r--r--content/5_Plat/DP_More.mdx2
-rw-r--r--src/components/ModuleLayout/ModuleLayout.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/content/5_Plat/DP_More.mdx b/content/5_Plat/DP_More.mdx
index d5d4da7..21dafbf 100644
--- a/content/5_Plat/DP_More.mdx
+++ b/content/5_Plat/DP_More.mdx
@@ -1,7 +1,7 @@
---
id: dp-more
title: "More DP (come up with better name?)"
-author: ?
+author: "?"
description: "?"
frequency: 1
---
diff --git a/src/components/ModuleLayout/ModuleLayout.tsx b/src/components/ModuleLayout/ModuleLayout.tsx
index c3f7447..28ffb6b 100644
--- a/src/components/ModuleLayout/ModuleLayout.tsx
+++ b/src/components/ModuleLayout/ModuleLayout.tsx
@@ -469,7 +469,7 @@ export default function ModuleLayout({
{module.title}
</h1>
<p className={`text-gray-500`}>
- Author{module.author.indexOf(',') != -1 ? 's' : ''}:{' '}
+ Author{module.author.indexOf(',') !== -1 ? 's' : ''}:{' '}
{module.author}
</p>
</div>