diff --git a/src/components/Fleets/Status/Vehicles/Table/index.jsx b/src/components/Fleets/Status/Vehicles/Table/index.jsx
index f152ff5..395186d 100644
--- a/src/components/Fleets/Status/Vehicles/Table/index.jsx
+++ b/src/components/Fleets/Status/Vehicles/Table/index.jsx
@@ -23,7 +23,6 @@ import {
} from "../../../../Contexts/FleetContext";
import { useStatusContext } from "../../../../Contexts/StatusContext";
import { useUserContext } from "../../../../Contexts/UserContext";
-import { VehicleProvider } from "../../../../Contexts/VehicleContext";
import SearchField from "../../../../Controls/SearchField";
import TableHeaderSortable from "../../../../Table/HeaderSortable";
import { useLocalStorage } from "../../../../useLocalStorage";
diff --git a/src/components/Manifest/Deploy/Configure.jsx b/src/components/Manifest/Deploy/Configure.jsx
index f22dece..519c9c0 100644
--- a/src/components/Manifest/Deploy/Configure.jsx
+++ b/src/components/Manifest/Deploy/Configure.jsx
@@ -1,7 +1,9 @@
import { useEffect, useState } from "react";
import {
Box,
+ Checkbox,
FormControl,
+ FormControlLabel,
IconButton,
Input,
InputLabel,
@@ -149,6 +151,12 @@ export default function Configure({
{manifest.name ? ({manifest.name}) : `This manifest`} is incomplete, and cannot be deployed without all required fields filled out.
+ handleManifestField("notify_sap", e.target.checked)}
+ />
+ } label="Notify SAP for OTA Campaign" />
+