We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adf28af commit 492535dCopy full SHA for 492535d
src/views/tenant/administration/TenantLookup.jsx
@@ -122,7 +122,9 @@ const GraphExplorer = () => {
122
<CCol sm={12} md={4} className="mb-3">
123
<p className="fw-lighter">Tenant Name</p>
124
{graphrequest.isFetching && <Skeleton />}
125
- {graphrequest.data?.GraphRequest?.displayName}
+ {graphrequest.data?.GraphRequest?.displayName
126
+ ? graphrequest.data?.GraphRequest?.displayName
127
+ : 'Could not find tenant - Is this a M365 domain name?'}
128
</CCol>
129
130
<p className="fw-lighter">Tenant ID</p>
0 commit comments