Implement alerts when a potential problem is detected (#10734)

* Implement alerts on statusbar when a potential problem is detected

* Add alert to mobile
This commit is contained in:
Nicolas Mowen
2024-03-30 12:45:13 -06:00
committed by GitHub
parent 190cdc471a
commit 89f843cf95
4 changed files with 171 additions and 46 deletions

View File

@@ -58,3 +58,8 @@ export type StorageStats = {
used: number;
mount_type: string;
};
export type PotentialProblem = {
text: string;
color: string;
};