Compare commits

..

3 Commits

4 changed files with 4 additions and 4 deletions

View File

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

View File

@@ -1,7 +1,7 @@
{
"name": "app",
"private": true,
"version": "1.3.1",
"version": "1.4.0",
"type": "module",
"scripts": {
"dev": "vite",

View File

@@ -52,7 +52,7 @@ const Flights = () => {
<Skeleton height={300} />
</Grid>
<Grid size={12}>
{[...Array(6)].map((_element, index) => {
{[...Array(4)].map((_element, index) => {
return (
<>
<Skeleton height={20} width={300} />

View File

@@ -1,6 +1,6 @@
{
"name": "@noahspan/flying",
"version": "1.3.0",
"version": "1.4.0",
"scripts": {
"start": "concurrently 'npm run start:azure -w api' 'wait-on tcp:0.0.0.0:7071 && npm run dev -w app'",
"format": "prettier --write \"**/src/**/*.ts\" \"**/test/**/*.ts\"",