diff --git a/packages/basehub/CHANGELOG.md b/packages/basehub/CHANGELOG.md index 438125b..5dca785 100644 --- a/packages/basehub/CHANGELOG.md +++ b/packages/basehub/CHANGELOG.md @@ -1,5 +1,11 @@ # basehub +## 7.5.27 + +### Patch Changes + +- Fix type error + ## 7.5.26 ### Patch Changes diff --git a/packages/basehub/package.json b/packages/basehub/package.json index 92b2906..0ac1b7f 100644 --- a/packages/basehub/package.json +++ b/packages/basehub/package.json @@ -2,7 +2,7 @@ "name": "basehub", "description": "A very fast Headless CMS.", "author": "JB ", - "version": "7.5.26", + "version": "7.5.27", "license": "MIT", "repository": "basehub-ai/basehub", "bugs": "https://github.com/basehub-ai/basehub/issues", diff --git a/packages/basehub/src/next/toolbar/server-toolbar.tsx b/packages/basehub/src/next/toolbar/server-toolbar.tsx index 11a9815..923b71a 100644 --- a/packages/basehub/src/next/toolbar/server-toolbar.tsx +++ b/packages/basehub/src/next/toolbar/server-toolbar.tsx @@ -142,7 +142,7 @@ export const ServerToolbar = async ({ } const response = await res.json(); - const tags = response.tags; + const tags = response; if (!tags || !Array.isArray(tags)) { return { success: false }; } diff --git a/playground/CHANGELOG.md b/playground/CHANGELOG.md index 47c30f7..5d9cd29 100644 --- a/playground/CHANGELOG.md +++ b/playground/CHANGELOG.md @@ -1,5 +1,12 @@ # playground +## 0.0.169 + +### Patch Changes + +- Updated dependencies + - basehub@7.5.27 + ## 0.0.168 ### Patch Changes diff --git a/playground/package.json b/playground/package.json index d6b5eb1..b505262 100644 --- a/playground/package.json +++ b/playground/package.json @@ -1,7 +1,7 @@ { "name": "playground", "private": true, - "version": "0.0.168", + "version": "0.0.169", "scripts": { "dev": "basehub dev & next dev --port 3003", "build": "basehub && next build",