feat(mui): migrate Warehouse overview + replace residual admin-loading loaders with LoadingState

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
BOHA
2026-06-07 01:45:04 +02:00
parent c7e42a923a
commit e4038051e9
6 changed files with 312 additions and 254 deletions

View File

@@ -34,6 +34,7 @@ import {
FilterBar,
Tabs,
PageHeader,
LoadingState,
type DataColumn,
type TabDef,
} from "../ui";
@@ -450,11 +451,7 @@ export default function Offers() {
};
if (isPending) {
return (
<div className="admin-loading">
<div className="admin-spinner" />
</div>
);
return <LoadingState />;
}
const total = pagination?.total ?? quotations.length;