Skip to content

Commit 83f19e7

Browse files
committed
allow editing ENV
1 parent a9dd642 commit 83f19e7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pages/Settings.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ export default function SettingsPage() {
201201
className="font-mono"
202202
disabled={
203203
isLoadingCredentials ||
204-
credentialSource === "env"
204+
credentialSource === "noenv"
205205
}
206206
placeholder="https://quackpy.fly.dev"
207207
{...field}
@@ -230,7 +230,7 @@ export default function SettingsPage() {
230230
className="font-mono"
231231
disabled={
232232
isLoadingCredentials ||
233-
credentialSource === "env"
233+
credentialSource === "noenv"
234234
}
235235
placeholder="default"
236236
autoComplete="username"
@@ -257,7 +257,7 @@ export default function SettingsPage() {
257257
className="font-mono pr-10"
258258
disabled={
259259
isLoadingCredentials ||
260-
credentialSource === "env"
260+
credentialSource === "noenv"
261261
}
262262
type={showPassword ? "text" : "password"}
263263
autoComplete="current-password"

0 commit comments

Comments
 (0)