Skip to content

Commit 19f9b2f

Browse files
committed
Remove duplicate order statement. Fixes #3418
1 parent affa397 commit 19f9b2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Presenters/IncidentPresenter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ public function latest_icon()
248248
*/
249249
public function latest()
250250
{
251-
if ($update = $this->wrappedObject->updates()->orderBy('created_at', 'desc')->first()) {
251+
if ($update = $this->wrappedObject->updates()->first()) {
252252
return $update;
253253
}
254254
}

0 commit comments

Comments
 (0)