remove comment
Some checks failed
Actions / Lint Plugins (push) Failing after 26s
Actions / Build Plugins (push) Successful in 30s

This commit is contained in:
cswimr 2024-12-23 01:29:20 -05:00
parent f774f3b8bc
commit ac8909181d
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

View file

@ -65,29 +65,4 @@ export default function EmojiPicker(): ReactNode | undefined {
))}
</Grid>
);
// return (
// <Inline
// actions={
// <ActionPanel>
// <Action
// label={`Copy ${emoji.emoji} to clipboard`}
// onAction={async () => {
// console.log(emoji.emoji);
// await Clipboard.writeText(emoji.emoji);
// showHud(`${emoji.emoji} copied to clipboard`);
// }}
// />
// </ActionPanel>
// }
// >
// <Inline.Left>
// <Content.H3>{text}</Content.H3>
// </Inline.Left>
// <Inline.Separator icon={Icons.ArrowRight} />
// <Inline.Right>
// <Content.Paragraph>{emoji.emoji}</Content.Paragraph>
// </Inline.Right>
// </Inline>
// );
}