diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-12 01:34:20 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-12 01:48:08 +0900 |
| commit | b97b245861b93a5ab5f8bde095d9920fabd0cbbd (patch) | |
| tree | fcb88fe6a71747623cbe7f9b5c3042818ab519cd /frontend/app/components/ExecStatusIndicatorIcon.tsx | |
| parent | 5964fa404909550a2dd42a75633fef223fdb05fb (diff) | |
| download | iosdc-japan-2025-albatross-b97b245861b93a5ab5f8bde095d9920fabd0cbbd.tar.gz iosdc-japan-2025-albatross-b97b245861b93a5ab5f8bde095d9920fabd0cbbd.tar.zst iosdc-japan-2025-albatross-b97b245861b93a5ab5f8bde095d9920fabd0cbbd.zip | |
refactor(frontend): move some types to app/models
Diffstat (limited to 'frontend/app/components/ExecStatusIndicatorIcon.tsx')
| -rw-r--r-- | frontend/app/components/ExecStatusIndicatorIcon.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/frontend/app/components/ExecStatusIndicatorIcon.tsx b/frontend/app/components/ExecStatusIndicatorIcon.tsx index a76e957..c5b37f8 100644 --- a/frontend/app/components/ExecStatusIndicatorIcon.tsx +++ b/frontend/app/components/ExecStatusIndicatorIcon.tsx @@ -5,9 +5,10 @@ import { faRotate, } from "@fortawesome/free-solid-svg-icons"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import { VerificationResultStatus } from "../models/VerificationResult"; type Props = { - status: string; + status: VerificationResultStatus; }; export default function ExecStatusIndicatorIcon({ status }: Props) { |
