fix: clean stale deployments before monolith start
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user