fix: clean stale deployments before monolith start

This commit is contained in:
Deploy
2026-08-25 21:59:29 +02:00
parent 9ae5f8e0de
commit 66a08b61d2
4 changed files with 89 additions and 22 deletions

View File

@@ -890,6 +890,7 @@ function Field({
required = false,
min,
max,
placeholder,
}: {
label: string;
value: string;
@@ -898,6 +899,7 @@ function Field({
required?: boolean;
min?: number;
max?: number;
placeholder?: string;
}) {
return (
<label className="text-sm font-medium text-gray-700">
@@ -909,6 +911,7 @@ function Field({
required={required}
min={min}
max={max}
placeholder={placeholder}
className="mt-1 w-full rounded-xl border border-gray-300 px-3 py-2.5"
/>
</label>