Skip to content

Commit

Permalink
PATCH: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
thiemen committed Jul 14, 2019
1 parent 092375b commit 3fc2ee0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions code/Model/SalesforceDefaultContactField.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,7 @@ public function requireDefaultRecords()
{
foreach ($this->Config()->get('default_records') as $key => $details) {
$value = isset($details['Value']) ? $details['Value'] : 'please set';
$type = isset($details['ValueType']) ? $details['Value'] : 'String';
$type = $details['ValueType'];
$type = isset($details['ValueType']) ? $details['ValueType'] : 'String';
$filter = [
'Key' => $key,
];
Expand Down

0 comments on commit 3fc2ee0

Please sign in to comment.