Skip to content

Commit 655aa0a

Browse files
Update README & remove console.log:
1 parent 29cfd43 commit 655aa0a

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,14 @@ My personal blog, made with the following technologies:
66
- Styled Components
77
- CSS
88
- Prism React Renderer
9-
- Sanity.io headless CMS
9+
- Sanity.io headless CMS
10+
11+
## TODOs
12+
- [ ] store theme preference in local storage
13+
- [ ] add logic that checks if manual published date is set before sorting
14+
- [ ] fix tags associated with unpublished posts to not be displayed
15+
- [ ] change how aside is serialized from asterisk
16+
- [ ] setup code block rendering from within asides
17+
- [ ] add internal links between posts
18+
- [ ] optimize loading data from Sanity
19+
- [ ] figure out what's going on with blank spans around inline code?

web/pages/posts/[slug].js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ function Post(props) {
315315
// TODO: test if list rendering works correctly with multiple lists in post
316316
let list = []
317317
props.body && props.body.forEach(section => {
318-
console.log('section: ', section)
318+
// console.log('section: ', section)
319319
if (section.listItem) {
320320
list.push(
321321
<ListItem key={section._key}>{formatListItem(section.children)}</ListItem>

0 commit comments

Comments
 (0)