Compare commits

..

2 Commits

Author SHA1 Message Date
881b351410 adding not signed in alerts to flights and logs 2026-03-08 14:51:07 -05:00
6700c83692 adding api unit tests 2026-03-01 16:46:27 -06:00
4 changed files with 4 additions and 9 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "api",
"version": "2.0.1",
"version": "2.0.0",
"description": "",
"author": "",
"private": true,

View File

@@ -1,7 +1,7 @@
{
"name": "client",
"private": true,
"version": "2.0.1",
"version": "2.0.0",
"type": "module",
"scripts": {
"dev": "vite",

View File

@@ -343,14 +343,9 @@ const Logbook: React.FC<unknown> = () => {
columns: columns,
getCoreRowModel: getCoreRowModel(),
getPaginationRowModel: getPaginationRowModel(),
initialState: {
pagination: {
pageSize: 100
}
},
onColumnVisibilityChange: setColumnVisibility,
state: {
columnVisibility: columnVisibility,
columnVisibility: columnVisibility
}
});

View File

@@ -1,6 +1,6 @@
{
"name": "@noahspan/flying",
"version": "2.0.1",
"version": "2.0.0",
"scripts": {
"start": "node api/dist/main",
"format": "prettier --write \"**/src/**/*.ts\" \"**/test/**/*.ts\"",