mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-07-27 04:32:32 +02:00
chore(linting): change arrowParents configuration, upgrade eslint config
This commit is contained in:
@@ -17,7 +17,7 @@ const CategoriesTemplate: React.FC = () => {
|
||||
<Sidebar />
|
||||
<Page title="Categories">
|
||||
<ul>
|
||||
{categories.map(category => (
|
||||
{categories.map((category) => (
|
||||
<li key={category.fieldValue}>
|
||||
<Link to={`/category/${toKebabCase(category.fieldValue)}/`}>
|
||||
{category.fieldValue} ({category.totalCount})
|
||||
|
@@ -17,7 +17,7 @@ const TagsTemplate: React.FC = () => {
|
||||
<Sidebar />
|
||||
<Page title="Tags">
|
||||
<ul>
|
||||
{tags.map(tag => (
|
||||
{tags.map((tag) => (
|
||||
<li key={tag.fieldValue}>
|
||||
<Link to={`/tag/${toKebabCase(tag.fieldValue)}/`}>
|
||||
{tag.fieldValue} ({tag.totalCount})
|
||||
|
Reference in New Issue
Block a user