Skip to content

Commit 087c580

Browse files
committed
lintエラー修正
1 parent 51cfcfd commit 087c580

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/[lang]/[pageId]/pageContent.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ interface PageContentProps {
2626
}
2727
export function PageContent(props: PageContentProps) {
2828
const { setSidebarMdContent } = useSidebarMdContext();
29-
const { splitMdContent, langEntry, pageEntry, path } = props;
29+
const { splitMdContent, pageEntry, path } = props;
3030

3131
// SSR用のローカルstate
3232
const [dynamicMdContent, setDynamicMdContent] = useState<
@@ -94,7 +94,7 @@ export function PageContent(props: PageContentProps) {
9494
}}
9595
>
9696
<Heading level={1}>
97-
{props.pageEntry.index}章: {props.pageEntry.title}
97+
{pageEntry.index}章: {pageEntry.title}
9898
</Heading>
9999
<div />
100100
{dynamicMdContent.map((section, index) => (

0 commit comments

Comments
 (0)