Fixed defaults (#3500)

This commit is contained in:
Erik Jan de Wit 2022-10-11 12:15:52 +02:00 committed by GitHub
parent 32f75ca109
commit 494d9ce6ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -88,7 +88,7 @@ export default function UsersSection() {
adminClient.realms.findOne({ realm: realmName }),
]);
} catch {
return [[{}], undefined] as [
return [[], {}] as [
ComponentRepresentation[],
RealmRepresentation | undefined
];