diff --git a/app/components/Article/KeepGoing/index.tsx b/app/components/Article/KeepGoing/index.tsx
index 96c9cb52..9467c9a5 100644
--- a/app/components/Article/KeepGoing/index.tsx
+++ b/app/components/Article/KeepGoing/index.tsx
@@ -4,6 +4,7 @@ import {ArrowRight} from '~/components/icons-generated'
import useToC from '~/hooks/useToC'
import type {TOCItem} from '~/routes/questions.toc'
import type {Question, RelatedQuestion} from '~/server-utils/stampy'
+import {questionUrl} from '~/routesMapper'
import styles from './keepGoing.module.css'
const nonContinueSections = ['8TJV']
@@ -18,12 +19,12 @@ const NextArticle = ({section, next, first}: NextArticleProps) =>
<>
- {first ? 'Start' : 'Continue'} with the {first ? 'first' : 'next'} article in{' '}
- {section?.category}
+ {first ? 'Start' : 'Continue'} with the {first ? 'first' : 'next'} article in "
+ {section?.title}"
{tags?.map((tag) => (
-
+
{tag}
))}
diff --git a/app/components/ArticlesDropdown/index.tsx b/app/components/ArticlesDropdown/index.tsx
index ebed05d6..2e1efefd 100644
--- a/app/components/ArticlesDropdown/index.tsx
+++ b/app/components/ArticlesDropdown/index.tsx
@@ -2,7 +2,8 @@ import {useState, useEffect} from 'react'
import {Link as LinkElem} from '@remix-run/react'
import type {Tag} from '~/server-utils/stampy'
import {TOCItem, Category, ADVANCED, INTRODUCTORY} from '~/routes/questions.toc'
-import {buildTagUrl, sortFuncs} from '~/routes/tags.$'
+import {sortFuncs} from '~/routes/tags.$'
+import {questionUrl, tagsUrl, tagUrl} from '~/routesMapper'
import Button from '~/components/Button'
import './dropdown.css'
@@ -41,8 +42,8 @@ export const ArticlesDropdown = ({toc, categories}: ArticlesDropdownProps) => {
{category}
{toc
.filter((item) => item.category === category)
- .map(({pageid, title}: TOCItem) => (
-
+ .map((item: TOCItem) => (
+
))}
)
@@ -65,12 +66,12 @@ export const ArticlesDropdown = ({toc, categories}: ArticlesDropdownProps) => {