Skip to content

Commit bcee707

Browse files
fix typo
1 parent 176e8e9 commit bcee707

File tree

1 file changed

+1
-1
lines changed
  • src/components/ChallengeEditor/Copilot-Field

1 file changed

+1
-1
lines changed

src/components/ChallengeEditor/Copilot-Field/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const CopilotField = ({ copilots, challenge, onUpdateOthers, readOnly, assignYou
1010
let errMessage = 'Please set a copilot'
1111
const handleProperty = copilots.handle ? 'handle' : 'memberHandle'
1212
const selectedCopilot = _.find(copilots, { [handleProperty]: challenge.copilot })
13-
const selectedCopilotHandle = selectedCopilot ? selectedCopilot[handle] : undefined
13+
const selectedCopilotHandle = selectedCopilot ? selectedCopilot[handleProperty] : undefined
1414
const copilotFee = _.find(challenge.prizeSets, p => p.type === 'copilot', [])
1515
const selfService = challenge.selfService
1616

0 commit comments

Comments
 (0)