remove debug log

This commit is contained in:
こけっち 2022-09-18 16:41:37 +09:00
parent c7b6e0cbf9
commit fbc1ec67cf
No known key found for this signature in database
GPG Key ID: 21460619C5FC4DD1

View File

@ -68,7 +68,6 @@ export async function openReactionImportMenu(ev: MouseEvent, reaction: string):
icon: 'fas fa-copy', icon: 'fas fa-copy',
text: i18n.ts.copy, text: i18n.ts.copy,
action: (): void => { action: (): void => {
console.log('copy');
copyToClipboard(reaction.startsWith(':') ? `:${reaction.match(/(?<=:).*(?=@.*\.*(?=:))/g)[0]}:` : reaction); copyToClipboard(reaction.startsWith(':') ? `:${reaction.match(/(?<=:).*(?=@.*\.*(?=:))/g)[0]}:` : reaction);
}, },
}]; }];