Skip to content
This repository was archived by the owner on Jan 6, 2026. It is now read-only.

Commit 1638696

Browse files
Fix UserProfileService to correctly retrieve filament content using filament->get() method.
1 parent 1e89064 commit 1638696

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Services/OrcaSlicer/UserProfileService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function import(User $user, Machine $machine, FilamentData $profile): voi
2727
$filament = $this->filament($vendor, $profile->inherits);
2828
$color = $this->color($profile->color);
2929

30-
$content = $profile->toArray();
30+
$content = $this->filament->get($profile)->toArray();
3131

3232
$user->userFilaments()->updateOrCreate([
3333
'machine_id' => $machine->id,

0 commit comments

Comments
 (0)