Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
thomassth committed Dec 24, 2024
1 parent 15cf7a6 commit c3a38e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client-admin/src/components/conversation-admin/seed-tweet.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const styles = {
}

@connect((state) => state.seed_comments_tweet)
class ModerateCommentsSeed extends React.Component {
class ModerateCommentsSeedClass extends React.Component {
constructor(props) {
super(props)
this.state = {
Expand Down Expand Up @@ -122,7 +122,7 @@ class ModerateCommentsSeed extends React.Component {
}
}

ModerateCommentsSeed.propTypes = {
ModerateCommentsSeedClass.propTypes = {
dispatch: PropTypes.func,
error: PropTypes.string,
success: PropTypes.any,
Expand All @@ -133,7 +133,7 @@ ModerateCommentsSeed.propTypes = {
})
}

ModerateCommentsSeed = Radium(ModerateCommentsSeed)
const ModerateCommentsSeed = Radium(ModerateCommentsSeedClass)
export default ModerateCommentsSeed

/*
Expand Down

0 comments on commit c3a38e0

Please sign in to comment.