Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and github-actions[bot] committed Jan 2, 2024
1 parent 0d6f922 commit 8d4fd90
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Livewire/OhDearUptimePulseCardComponent.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ public function getData()

$performanceRecords = collect($performanceRecords)
->map(function (PerformanceRecord $record) {
$createdAt = Carbon::createFromFormat("Y-m-d H:i:s", $record->createdAt);
$createdAt = Carbon::createFromFormat('Y-m-d H:i:s', $record->createdAt);

return [
$createdAt->timestamp,
$record->totalTimeInSeconds * 1000
];
})->toArray();
return [
$createdAt->timestamp,
$record->totalTimeInSeconds * 1000,
];
})->toArray();

return $performanceRecords;
}
Expand Down

0 comments on commit 8d4fd90

Please sign in to comment.