Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
erkurn authored and github-actions[bot] committed Sep 27, 2022
1 parent a905efc commit d6ce0c7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Forms/Components/AddressPicker.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
use Geocoder\Provider\GoogleMaps\GoogleMaps;
use Geocoder\Query\ReverseQuery;
use GuzzleHttp\Client;
use Illuminate\Support\Arr;

class AddressPicker extends Field
{
Expand Down Expand Up @@ -108,8 +107,8 @@ public function getState()
} else {
if (count(explode(',', $state)) > 0) {
return [
'lat' => floatval(explode(',', $state)[0]),
'lng' => floatval(explode(',', $state)[1]),
'lat' => floatval(explode(',', $state)[0]),
'lng' => floatval(explode(',', $state)[1]),
];
}

Expand Down

0 comments on commit d6ce0c7

Please sign in to comment.