Skip to content

Commit

Permalink
Test fix (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
dicani0 authored Oct 16, 2023
1 parent 63502cf commit 2740f74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Services/CsvUserService.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function saveUserFromImport(Collection $data, string $returnUrl): Model

$user->syncRoles($data->get('roles'));
$user->syncPermissions($data->get('permissions'));
$this->syncGroups($user, $data->get('groups'));
$this->syncGroups($user, $data->get('groups') ?? []);

return $user;
}
Expand Down

0 comments on commit 2740f74

Please sign in to comment.