diff --git a/api/package.json b/api/package.json
index 8e7c6b4..4c40a6a 100644
--- a/api/package.json
+++ b/api/package.json
@@ -1,6 +1,6 @@
{
"name": "api",
- "version": "1.1.0",
+ "version": "1.2.0",
"description": "",
"author": "",
"private": true,
diff --git a/app/package.json b/app/package.json
index 4a56710..c1306b6 100644
--- a/app/package.json
+++ b/app/package.json
@@ -1,7 +1,7 @@
{
"name": "app",
"private": true,
- "version": "1.1.0",
+ "version": "1.2.0",
"type": "module",
"scripts": {
"dev": "vite",
diff --git a/app/src/components/pilotFormCertificates/PilotFormCertificates.tsx b/app/src/components/pilotFormCertificates/PilotFormCertificates.tsx
index 460f356..1042633 100644
--- a/app/src/components/pilotFormCertificates/PilotFormCertificates.tsx
+++ b/app/src/components/pilotFormCertificates/PilotFormCertificates.tsx
@@ -8,9 +8,7 @@ import {
IconName,
Select,
TextField,
- theme,
Typography,
- useMediaQuery
} from '@noahspan/noahspan-components';
import { Controller, useFieldArray, useFormContext } from 'react-hook-form';
import { FormMode } from '../../enums/formMode';
@@ -23,7 +21,6 @@ const PilotFormCertificates = ({
control,
formState: { errors },
} = useFormContext();
- const isMedium = useMediaQuery(theme.breakpoints.up('md'));
const { fields, append, remove } = useFieldArray({
name: 'certificates',
@@ -138,11 +135,6 @@ const PilotFormCertificates = ({
-
- {!isMedium && index + 1 < fields.length &&
-
- }
-
>
);
})}
diff --git a/package.json b/package.json
index ed0bc53..0e3ad57 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@noahspan/flying",
- "version": "1.1.0",
+ "version": "1.2.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\"",