Added falsy check for ops

This commit is contained in:
lamemakes 2023-03-06 12:10:22 -05:00
parent 909daa4dc2
commit 038f676b93

View file

@ -67,7 +67,7 @@ export class SignalClipboard {
const { ops } = contents;
if (ops === undefined || !ops.length) {
if (!ops || !ops.length) {
return;
}