fix: missing return

This commit is contained in:
Derrick Hammer 2023-09-02 13:08:36 -04:00
parent 1c4da69806
commit 7d44208132
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -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;