fix: missing return
This commit is contained in:
parent
1c4da69806
commit
7d44208132
|
@ -28,7 +28,7 @@ export function getSavedRegistryEntry(pubkey: string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (DEFAULT_MODULE_REGISTRY.has(pubkey)) {
|
if (DEFAULT_MODULE_REGISTRY.has(pubkey)) {
|
||||||
DEFAULT_MODULE_REGISTRY.get(pubkey) as string;
|
return DEFAULT_MODULE_REGISTRY.get(pubkey) as string;
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
|
|
Loading…
Reference in New Issue