You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.environment-variables.new/route.tsx
+39-36Lines changed: 39 additions & 36 deletions
Original file line number
Diff line number
Diff line change
@@ -207,6 +207,9 @@ export default function Page() {
207
207
returnparse(formData,{ schema });
208
208
},
209
209
shouldRevalidate: "onSubmit",
210
+
defaultValue: {
211
+
variables: [{key: "",value: ""}],
212
+
},
210
213
});
211
214
212
215
consthandleEnvironmentChange=(
@@ -245,7 +248,7 @@ export default function Page() {
245
248
setSelectedBranchId(undefined);
246
249
}else{
247
250
setSelectedBranchId(branchId);
248
-
}
251
+
}
249
252
};
250
253
251
254
const[revealAll,setRevealAll]=useState(true);
@@ -273,8 +276,8 @@ export default function Page() {
0 commit comments