Skip to content

Commit

Permalink
code cleanup (PropTypes)
Browse files Browse the repository at this point in the history
  • Loading branch information
SteRiccio committed Oct 14, 2024
1 parent 785bda9 commit aa19901
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react'
import PropTypes from 'prop-types'

import * as A from '@core/arena'
import * as StringUtils from '@core/stringUtils'
Expand Down Expand Up @@ -68,3 +69,8 @@ export const AcceptRequestPanel = (props) => {
</div>
)
}

AcceptRequestPanel.propTypes = {
userAccessRequest: PropTypes.object.isRequired,
onRequestAccepted: PropTypes.func.isRequired,
}

0 comments on commit aa19901

Please sign in to comment.