Skip to content

Commit

Permalink
pint : fix style issue
Browse files Browse the repository at this point in the history
  • Loading branch information
developermithu committed Sep 18, 2024
1 parent 008c139 commit e5e11ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/View/Components/Card/Card.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public function __construct() {}

public function roundedClass(): string
{
$default = config("tallcraftui.card.border-radius", 'rounded-lg');
$default = config('tallcraftui.card.border-radius', 'rounded-lg');

return match (true) {
$default === 'rounded' => 'rounded',
Expand Down
2 changes: 1 addition & 1 deletion src/View/Components/Card/CardFigure.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function __construct(

public function roundedClass(): string
{
$default = config("tallcraftui.card.border-radius", 'rounded-lg');
$default = config('tallcraftui.card.border-radius', 'rounded-lg');

return match (true) {
$default === 'rounded' => 'rounded',
Expand Down

0 comments on commit e5e11ca

Please sign in to comment.