Skip to content

Commit

Permalink
fix(connections): table max row 200
Browse files Browse the repository at this point in the history
  • Loading branch information
Zephyruso authored and Zephyruso committed Sep 6, 2023
1 parent 6852296 commit 0d61b46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Connections.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default () => {
[...prev, ...closedConnections].slice(-1000),
)

return connections
return connections.slice(-200)
}

createEffect(() => {
Expand Down

0 comments on commit 0d61b46

Please sign in to comment.