Update dependencies. Fixed linting issues discovered after update.

This commit is contained in:
gbuomprisco
2025-01-28 10:41:05 +07:00
parent 01eeb8a6af
commit d799f54ede
31 changed files with 739 additions and 712 deletions

View File

@@ -27,7 +27,7 @@ function Node({
prefix: string;
}) {
const url = `${prefix}/${node.slug}`;
const label = node.label ? node.label : node.title;
const label = node.label ?? node.title;
const Container = (props: React.PropsWithChildren) => {
if (node.collapsible) {