Skip to content

Commit

Permalink
allow editing ENV
Browse files Browse the repository at this point in the history
  • Loading branch information
lmangani committed Jan 3, 2025
1 parent a9dd642 commit 83f19e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export default function SettingsPage() {
className="font-mono"
disabled={
isLoadingCredentials ||
credentialSource === "env"
credentialSource === "noenv"
}
placeholder="https://quackpy.fly.dev"
{...field}
Expand Down Expand Up @@ -230,7 +230,7 @@ export default function SettingsPage() {
className="font-mono"
disabled={
isLoadingCredentials ||
credentialSource === "env"
credentialSource === "noenv"
}
placeholder="default"
autoComplete="username"
Expand All @@ -257,7 +257,7 @@ export default function SettingsPage() {
className="font-mono pr-10"
disabled={
isLoadingCredentials ||
credentialSource === "env"
credentialSource === "noenv"
}
type={showPassword ? "text" : "password"}
autoComplete="current-password"
Expand Down

0 comments on commit 83f19e7

Please sign in to comment.