🐞 Removed icon, warning and restrictions for av scanning status (#753)

This commit is contained in:
Montassar Ghanmy
2024-11-28 13:12:15 +01:00
committed by GitHub
parent f51592a450
commit ba6c39d9b3
3 changed files with 5 additions and 6 deletions
@@ -8,8 +8,8 @@ import * as UUIDTools from "../../../utils/uuid";
export const TYPE = "drive_files";
export type DriveScope = "personal" | "shared";
export type AVStatusSafe = "uploaded" | "safe";
export type AVStatusUnsafe = "scanning" | "scan_failed" | "malicious" | "skipped";
export type AVStatusSafe = "uploaded" | "scanning" | "safe";
export type AVStatusUnsafe = "scan_failed" | "malicious" | "skipped";
export type AVStatus = AVStatusSafe | AVStatusUnsafe;
/**