mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-21 10:43:36 +00:00
Remove unused usagePercent variable in Storage.tsx
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user