Removed alert message from Update firmware component

There shouldn't be an alert message in the update firmware component.

- Took away the alert from the Update firmware component.

Signed-off-by: Kenneth Fullbright <kennyneedsmilky@gmail.com>
Change-Id: I1ab97fbba39fb2d7639707cceaf75b71531fa971
diff --git a/src/views/Operations/Firmware/FirmwareFormUpdate.vue b/src/views/Operations/Firmware/FirmwareFormUpdate.vue
index 04b28a5..ac4b23f 100644
--- a/src/views/Operations/Firmware/FirmwareFormUpdate.vue
+++ b/src/views/Operations/Firmware/FirmwareFormUpdate.vue
@@ -64,18 +64,6 @@
         >
           {{ $t('pageFirmware.form.updateFirmware.startUpdate') }}
         </b-btn>
-        <alert
-          v-if="isServerPowerOffRequired && !isServerOff"
-          variant="warning"
-          :small="true"
-          class="mt-4"
-        >
-          <p class="col-form-label">
-            {{
-              $t('pageFirmware.alert.serverMustBePoweredOffToUpdateFirmware')
-            }}
-          </p>
-        </alert>
       </b-form>
     </div>
 
@@ -91,12 +79,11 @@
 import LoadingBarMixin, { loading } from '@/components/Mixins/LoadingBarMixin';
 import VuelidateMixin from '@/components/Mixins/VuelidateMixin.js';
 
-import Alert from '@/components/Global/Alert';
 import FormFile from '@/components/Global/FormFile';
 import ModalUpdateFirmware from './FirmwareModalUpdateFirmware';
 
 export default {
-  components: { Alert, FormFile, ModalUpdateFirmware },
+  components: { FormFile, ModalUpdateFirmware },
   mixins: [BVToastMixin, LoadingBarMixin, VuelidateMixin],
   props: {
     isPageDisabled: {