Remove unused usagePercent variable in Storage.tsx

This commit is contained in:
rcourtman 2025-11-29 18:46:14 +00:00
parent 712541d5d8
commit 8bc8a98bb8

View file

@ -803,8 +803,6 @@ const Storage: Component = () => {
{/* Storage Rows */}
<For each={storages} fallback={<></>}>
{(storage) => {
const usagePercent =
storage.total > 0 ? (storage.used / storage.total) * 100 : 0;
const isDisabled = storage.status !== 'available';
const pbsNamesDisplay = createMemo(() => {
const names = storage.pbsNames?.filter(