Skip to content

Commit

Permalink
fix: pint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
devansh-webkul committed Jan 20, 2025
1 parent 698fa73 commit cc00d6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/Webkul/Admin/src/DataGrids/Mail/EmailDataGrid.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ public function prepareColumns(): void
'filterable' => true,
'closure' => function ($row) {
return $row->name
? trim($row->name, "\"")
: trim($row->from, "\"");
? trim($row->name, '"')
: trim($row->from, '"');
},
]);

Expand Down

0 comments on commit cc00d6e

Please sign in to comment.