Fix minor error

This commit is contained in:
omaroughriss 2025-09-30 17:53:53 +02:00
parent dac27abb34
commit bedfbdc227

View File

@ -1371,9 +1371,9 @@ export default function FoldersPage() {
const getStorageIcon = (storageType: string) => { const getStorageIcon = (storageType: string) => {
return storageType === "permanent" ? ( return storageType === "permanent" ? (
<Cloud className="h-4 w-4 text-blue-600" title="Stockage permanent" /> <Cloud className="h-4 w-4 text-blue-600" />
) : ( ) : (
<HardDrive className="h-4 w-4 text-gray-600" title="Stockage temporaire" /> <HardDrive className="h-4 w-4 text-gray-600" />
) )
} }