Compare commits

...

3 Commits

Author SHA1 Message Date
hamster1963
9731eeb530 bump version to 2.6.1 2025-02-01 19:54:43 +08:00
hamster1963
77ac6f2f44 refactor: reposition DashCommand component in MainLayout 2025-02-01 19:52:48 +08:00
hamster1963
d715d050d2 chore: update dev dependencies to latest versions 2025-02-01 19:47:17 +08:00
3 changed files with 5 additions and 5 deletions

View File

@ -17,8 +17,8 @@ export default function MainLayout({ children }: DashboardProps) {
<Header />
<AuthProtected>
<ServerDataProvider>
<DashCommand />
{children}
<DashCommand />
</ServerDataProvider>
</AuthProtected>
<Footer />

BIN
bun.lockb

Binary file not shown.

View File

@ -1,6 +1,6 @@
{
"name": "nezha-dash",
"version": "2.6.0",
"version": "2.6.1",
"private": true,
"scripts": {
"dev": "next dev -p 3040",
@ -60,12 +60,12 @@
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@next/bundle-analyzer": "^15.1.6",
"@tailwindcss/postcss": "^4.0.0",
"@types/node": "^22.12.0",
"@tailwindcss/postcss": "^4.0.2",
"@types/node": "^22.13.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"postcss": "^8.5.1",
"tailwindcss": "^4.0.0",
"tailwindcss": "^4.0.2",
"typescript": "^5.7.3",
"vercel": "^39.4.2"
},