Skip to content

Commit

Permalink
Merge branch 'main' of github.com:mansoorkhan96/filament-unsplash-picker
Browse files Browse the repository at this point in the history
  • Loading branch information
mansoorkhan96 committed Mar 21, 2024
2 parents 5b9dcbf + be86618 commit 2ba9089
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/UnsplashPickerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function packageRegistered()
{
$this->callAfterResolving(Factory::class, function (Factory $factory) {
$factory->add('up', [
'path' => __DIR__.'/../resources/icons',
'path' => __DIR__ . '/../resources/icons',
'prefix' => 'up',
]);
});
Expand All @@ -41,7 +41,7 @@ public function packageRegistered()
public function packageBooted(): void
{
FilamentAsset::register([
Css::make(static::$name, __DIR__.'/../resources/dist/unsplash-picker.css')->loadedOnRequest(),
], 'mansoor/'.static::$name);
Css::make(static::$name, __DIR__ . '/../resources/dist/unsplash-picker.css')->loadedOnRequest(),
], 'mansoor/' . static::$name);
}
}

0 comments on commit 2ba9089

Please sign in to comment.