Skip to content

Commit

Permalink
Fix not available toReversed method
Browse files Browse the repository at this point in the history
  • Loading branch information
midudev committed Jun 14, 2024
1 parent 441c226 commit bed2e6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/Projects.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
import { PROJECTS } from "../consts"
const finalProjects = PROJECTS.filter((project) => !project.hidden).toReversed()
const finalProjects = PROJECTS.filter((project) => !project.hidden).slice().reverse()
---

<div
Expand Down

0 comments on commit bed2e6b

Please sign in to comment.