feat: Prefer primary color (#2665)

This commit is contained in:
Thomas Camlong
2025-04-16 11:34:33 +02:00
committed by GitHub
parent 97390c6030
commit 00053bda7b
29 changed files with 30 additions and 51 deletions
@@ -189,7 +189,7 @@ const StorageType = ({ item }: { item: StorageResource }) => {
if (item.isShared) {
return <Badge color="blue">{t("shared")}</Badge>;
} else {
return <Badge color="teal">{t("local")}</Badge>;
return <Badge>{t("local")}</Badge>;
}
};