Skip to content

Commit

Permalink
F #6769: Fix provider create form (#3291)
Browse files Browse the repository at this point in the history
  • Loading branch information
jloboescalona2 authored Nov 7, 2024
1 parent e2c54b1 commit 0c1bf22
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import {
LinearProgress,
Select,
} from '@mui/material'
import {} from '@mui/material/Link'
import { NavArrowRight } from 'iconoir-react'
import { marked } from 'marked'
import PropTypes from 'prop-types'
Expand Down Expand Up @@ -91,7 +90,7 @@ const Content = ({ data, setFormData }) => {
.flat()
),
],
[]
[providerConfig]
)

const [providerSelected, setProvider] = useState(
Expand Down Expand Up @@ -186,6 +185,9 @@ const Content = ({ data, setFormData }) => {
value={provisionSelected}
variant="outlined"
>
<option key="" value="">
--
</option>
{provisionTypes.map((type) => (
<option key={type} value={type}>
{type}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,9 @@ const Content = ({ data, setFormData }) => {
value={provisionSelected}
variant="outlined"
>
<option key="" value=""></option>
<option key="" value="">
--
</option>
{provisionTypes.map((type) => (
<option key={type} value={type}>
{type}
Expand Down

0 comments on commit 0c1bf22

Please sign in to comment.