diff --git a/packages/manager/src/features/Account/Quotas/QuotasTable/QuotasTable.tsx b/packages/manager/src/features/Account/Quotas/QuotasTable/QuotasTable.tsx
index 371fc394265..d25ee8b408c 100644
--- a/packages/manager/src/features/Account/Quotas/QuotasTable/QuotasTable.tsx
+++ b/packages/manager/src/features/Account/Quotas/QuotasTable/QuotasTable.tsx
@@ -55,7 +55,9 @@ export const QuotasTable = (props: QuotasTableProps) => {
enabled: isGlobalScope ? true : hasSelectedLocation,
});
- if (quotasErrorMessage) {
+ const isNotFoundErrorIgnored = quotasErrorMessage === 'Not found';
+
+ if (quotasErrorMessage && !isNotFoundErrorIgnored) {
return ;
}
@@ -103,6 +105,12 @@ export const QuotasTable = (props: QuotasTableProps) => {
message="Apply filters above to see quotas and current usage."
sx={{ height: QUOTA_ROW_MIN_HEIGHT }}
/>
+ ) : isNotFoundErrorIgnored ? (
+
) : quotasWithUsage.length === 0 ? (