Skip to content

Commit d2510f6

Browse files
lint fixes
1 parent 3b7e7d4 commit d2510f6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/pages/[[...markdownPath]].js

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ function useActiveSection() {
7474
function reviveNodeOnClient(key, val) {
7575
if (typeof val === 'object' && val !== null && 'type' in val) {
7676
// Assume it's a React element.
77-
let {type, key, ref, props} = val;
77+
let {type, key, props} = val;
7878
if (type === 'wrapper') {
7979
type = Fragment;
8080
props = {children: props.children};

src/pages/_document.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ const MyDocument = () => {
8787
}
8888
}
8989
const uwuQueryParam = checkQueryParam();
90+
console.log('uwuQueryParam', uwuQueryParam);
9091
if (uwuQueryParam != null) {
9192
setUwu(uwuQueryParam);
9293
} else if (checkLocalStorage()) {

0 commit comments

Comments
 (0)