Skip to content

Commit

Permalink
feat: add menu processing
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-at-airwalk committed May 10, 2024
1 parent 8450829 commit ccc4039
Show file tree
Hide file tree
Showing 14 changed files with 1,739 additions and 807 deletions.
65 changes: 22 additions & 43 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"@mui/utils": "^5.15.14",
"@next/mdx": "^14.1.4",
"@octokit/auth-app": "^6.1.1",
"@octokit/rest": "^20.1.0",
"@octokit/rest": "^20.1.1",
"@opensearch-project/opensearch": "^2.6.0",
"@spotlightjs/spotlight": "^1.2.16",
"@stefanprobst/rehype-extract-toc": "^2.2.0",
Expand Down
2 changes: 1 addition & 1 deletion site.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ interface Etherpad {
url: string;
}

interface SiteConfig {
export interface SiteConfig {
title: string;
company: string;
tagline: string;
Expand Down
4 changes: 2 additions & 2 deletions src/_components/Layouts/IndexTiles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ export default async function IndexTiles({

logger.debug({ ...initialContext, msg: 'initialContext' });

const { loading, tiles, error } = await getTiles(initialContext);
logger.debug({ loading, tiles, error, msg: 'loaded tiles..' });
const { loading, tiles } = await getTiles(initialContext);
// logger.debug({ loading, tiles, error, msg: 'loaded tiles..' });
// const loading = true;
// const tiles = [];

Expand Down
Loading

0 comments on commit ccc4039

Please sign in to comment.