fleet/frontend/pages/SoftwarePage/SoftwareAddPage/SoftwareFleetMaintained/FleetMaintainedAppDetailsPage/AddFleetAppSoftwareModal/AddFleetAppSoftwareModal.tsx
Jahziel Villasana-Espinoza d4b0edf8c9
fix: small typo (#24149)
> No issue, just something I noticed

# Checklist for submitter

If some of the following don't apply, delete the relevant line.

<!-- Note that API documentation changes are now addressed by the
product design team. -->

- [x] Changes file added for user-visible changes in `changes/`,
`orbit/changes/` or `ee/fleetd-chrome/changes`.
See [Changes
files](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/Committing-Changes.md#changes-files)
for more information.
- [x] Manual QA for all new/changed functionality
2024-11-25 18:00:07 -05:00

28 lines
669 B
TypeScript

import Modal from "components/Modal";
import Spinner from "components/Spinner";
import { noop } from "lodash";
import React from "react";
const baseClass = "add-fleet-app-software-modal";
const AddFleetAppSoftwareModal = () => {
return (
<Modal
className={baseClass}
title="Add software"
width="large"
onExit={noop}
disableClosingModal
>
<>
<Spinner centered={false} className={`${baseClass}__spinner`} />
<p>
Uploading software so that it&apos;s available for install. This may
take a few minutes.
</p>
</>
</Modal>
);
};
export default AddFleetAppSoftwareModal;