diff --git a/src/containers/internal/views/alerts/index.tsx b/src/containers/internal/views/alerts/index.tsx index 910ddb5..3b9221b 100644 --- a/src/containers/internal/views/alerts/index.tsx +++ b/src/containers/internal/views/alerts/index.tsx @@ -93,7 +93,7 @@ export const Alerts = () => {
- {!hasValue(alerts) ? ( + {!hasValue(alerts) && hasLength(accounts) ? ( ) : hasLength(alerts) ? ( alerts.map((alert) => ( diff --git a/src/containers/internal/views/applications/index.tsx b/src/containers/internal/views/applications/index.tsx index f697a7f..6035111 100644 --- a/src/containers/internal/views/applications/index.tsx +++ b/src/containers/internal/views/applications/index.tsx @@ -106,7 +106,7 @@ export const Applications = () => {
- {!hasValue(applications) ? ( + {!hasValue(applications) && hasLength(accounts) ? ( ) : hasLength(filteredApplications) ? ( filteredApplications.map((application) => { diff --git a/src/containers/internal/views/carriers/index.tsx b/src/containers/internal/views/carriers/index.tsx index 59e7b69..775aa92 100644 --- a/src/containers/internal/views/carriers/index.tsx +++ b/src/containers/internal/views/carriers/index.tsx @@ -146,7 +146,7 @@ export const Carriers = () => {
- {!hasValue(carriers) ? ( + {!hasValue(carriers) && hasLength(accounts) ? ( ) : hasLength(filteredCarriers) ? ( filteredCarriers.map((carrier) => ( diff --git a/src/containers/internal/views/recent-calls/index.tsx b/src/containers/internal/views/recent-calls/index.tsx index 4857293..85f17ec 100644 --- a/src/containers/internal/views/recent-calls/index.tsx +++ b/src/containers/internal/views/recent-calls/index.tsx @@ -122,7 +122,7 @@ export const RecentCalls = () => {
- {!hasValue(calls) ? ( + {!hasValue(calls) && hasLength(accounts) ? ( ) : hasLength(calls) ? ( calls.map((call) => ) diff --git a/src/containers/internal/views/speech-services/index.tsx b/src/containers/internal/views/speech-services/index.tsx index b8ca896..6a9c5d6 100644 --- a/src/containers/internal/views/speech-services/index.tsx +++ b/src/containers/internal/views/speech-services/index.tsx @@ -108,7 +108,7 @@ export const SpeechServices = () => {
- {!hasValue(filteredCredentials) ? ( + {!hasValue(filteredCredentials) && hasLength(accounts) ? ( ) : hasLength(filteredCredentials) ? ( filteredCredentials.map((credential) => { diff --git a/src/containers/internal/views/users/index.tsx b/src/containers/internal/views/users/index.tsx index c3b20dd..d81f513 100644 --- a/src/containers/internal/views/users/index.tsx +++ b/src/containers/internal/views/users/index.tsx @@ -113,7 +113,7 @@ export const Users = () => {
Scope
 
- {!hasValue(users) ? ( + {!hasValue(users) && hasLength(accounts) ? ( ) : hasLength(filteredUsers) ? ( filteredUsers.map((user) => {