Release 2025-05-19

This commit is contained in:
pluja
2025-05-19 10:19:49 +00:00
parent 046c4559e5
commit 2657f936bc
267 changed files with 0 additions and 49432 deletions

View File

@@ -1,30 +0,0 @@
---
import { orderBy } from 'lodash-es'
import { karmaUnlocks } from '../constants/karmaUnlocks'
const karmaUnlocksSorted = orderBy(karmaUnlocks, [
({ karma }) => (karma >= 0 ? 1 : 2),
({ karma }) => Math.abs(karma),
'id',
])
---
<table>
<thead>
<tr>
<th>Karma</th>
<th>Unlock</th>
</tr>
</thead>
<tbody>
{
karmaUnlocksSorted.map((unlock) => (
<tr>
<td>{unlock.karma.toLocaleString()}</td>
<td>{unlock.name}</td>
</tr>
))
}
</tbody>
</table>