remove useless try/catch

This commit is contained in:
cswimr 2024-10-18 13:05:48 -04:00
parent efb091fead
commit b3d5542a10
Signed by: cswimr
GPG key ID: A9C162E867C851FA

View file

@ -9,7 +9,6 @@ const denoCore: DenoCore = Deno[Deno.internal].core;
export default function EmojiPicker(props: { text: string }): ReactNode | undefined {
const text = props.text;
try {
if (text.length < 3) {
return undefined
};
@ -46,8 +45,5 @@ export default function EmojiPicker(props: { text: string }): ReactNode | undefi
</Content.H3>
</Inline.Right>
</Inline>
)
} catch (e) {
return undefined
};
);
};