From d2ca3f7c632121214dbcc9cbcc43cc8d86853830 Mon Sep 17 00:00:00 2001 From: Noah Spannbauer Date: Sun, 8 Mar 2026 17:56:24 -0500 Subject: [PATCH] updating default logbook table page size --- api/package.json | 2 +- client/package.json | 2 +- client/src/components/logbook/Logbook.tsx | 1 + package.json | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/api/package.json b/api/package.json index 886000e..0881606 100644 --- a/api/package.json +++ b/api/package.json @@ -1,6 +1,6 @@ { "name": "api", - "version": "2.0.1", + "version": "2.0.2", "description": "", "author": "", "private": true, diff --git a/client/package.json b/client/package.json index 9513366..71a6a31 100644 --- a/client/package.json +++ b/client/package.json @@ -1,7 +1,7 @@ { "name": "client", "private": true, - "version": "2.0.1", + "version": "2.0.2", "type": "module", "scripts": { "dev": "vite", diff --git a/client/src/components/logbook/Logbook.tsx b/client/src/components/logbook/Logbook.tsx index b21fabe..b320dfe 100644 --- a/client/src/components/logbook/Logbook.tsx +++ b/client/src/components/logbook/Logbook.tsx @@ -345,6 +345,7 @@ const Logbook: React.FC = () => { getPaginationRowModel: getPaginationRowModel(), initialState: { pagination: { + pageIndex: 0, pageSize: 100 } }, diff --git a/package.json b/package.json index 19874c8..609a9e6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@noahspan/flying", - "version": "2.0.1", + "version": "2.0.2", "scripts": { "start": "node api/dist/main", "format": "prettier --write \"**/src/**/*.ts\" \"**/test/**/*.ts\"",