Skip to content

Commit

Permalink
fix eslint == finding
Browse files Browse the repository at this point in the history
  • Loading branch information
PacoVK committed Sep 26, 2024
1 parent 71c19b8 commit 5fbc200
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/webui/src/components/forms/DeployKeyForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const DeployKeyForm = (props: DeployKeyFormProps) => {
body.append("provider", moduleProvider);
}
} else if (srcType === "provider") {
if (scope == "type") {
if (scope === "type") {
body.append("type", name);
}
}
Expand Down Expand Up @@ -136,7 +136,7 @@ const DeployKeyForm = (props: DeployKeyFormProps) => {
/>
{srcType === "module" ? (
<>
{scope === "name" || scope == "provider" ? (
{scope === "name" || scope === "provider" ? (
<TextField
type="text"
variant="outlined"
Expand All @@ -149,7 +149,7 @@ const DeployKeyForm = (props: DeployKeyFormProps) => {
sx={{ mb: 4 }}
/>
) : null}
{scope == "provider" ? (
{scope === "provider" ? (
<TextField
type="text"
variant="outlined"
Expand All @@ -165,7 +165,7 @@ const DeployKeyForm = (props: DeployKeyFormProps) => {
</>
) : (
<>
{scope == "type" ? (
{scope === "type" ? (
<TextField
type="text"
variant="outlined"
Expand Down

0 comments on commit 5fbc200

Please sign in to comment.