Skip to content

Commit

Permalink
fix(admin-ui): code smells
Browse files Browse the repository at this point in the history
Signed-off-by: Jeet Viramgama <jviramgama5@gmail.com>
  • Loading branch information
jv18creator committed Nov 24, 2023
1 parent 79efbfc commit 3861710
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React, { useState } from 'react'
import { Accordion, FormGroup, Col, Button } from 'Components'
import GluuInlineInput from 'Routes/Apps/Gluu/GluuInlineInput'
import { useTranslation } from 'react-i18next'
import PropTypes from 'prop-types'

function JsonPropertyBuilder({
propKey,
Expand Down Expand Up @@ -198,4 +199,8 @@ function JsonPropertyBuilder({
return <div></div>
}

JsonPropertyBuilder.propTypes = {
schema: PropTypes.shape({ items: PropTypes.any, type: PropTypes.string })
}

export default JsonPropertyBuilder

0 comments on commit 3861710

Please sign in to comment.