chore: bump version to 3.0.3 in package.json and update dependencies in pnpm-lock.yaml and pnpm-workspace.yaml (#467)

This commit is contained in:
Giancarlo Buomprisco
2026-03-26 07:40:51 +08:00
committed by GitHub
parent 5dc5ee8f08
commit cc3eb5c554
14 changed files with 673 additions and 648 deletions

View File

@@ -26,15 +26,14 @@ export default function VariablesPage({ searchParams }: VariablesPageProps) {
return (
<Page style={'custom'}>
<div className={'flex h-screen flex-col overflow-hidden'}>
<PageHeader
displaySidebarTrigger={false}
title={'Environment Variables'}
description={
'Manage environment variables for your applications. Validate and set them up easily.'
}
/>
<PageBody className={'overflow-hidden'}>
<PageHeader
title={'Environment Variables'}
description={
'Manage environment variables for your applications. Validate and set them up easily.'
}
/>
<div className={'flex h-full flex-1 flex-col space-y-4'}>
{apps.map((app) => (
<AppEnvironmentVariablesManager key={app.appName} state={app} />