fix bad merge in UtilityService.ts

This commit is contained in:
Hazelnoot 2025-06-01 14:19:39 -04:00
parent 8894578b2a
commit 15c45633e5

View file

@ -94,15 +94,6 @@ export class UtilityService {
return this.meta.bubbleInstances.some(x => `.${host.toLowerCase()}`.endsWith(`.${x}`));
}
@bindThis
public isBubbledHost(host: string | null): boolean {
if (host == null) return false;
// TODO remove null conditional after merging lab/persisted-instance-blocks
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
return this.meta.bubbleInstances?.includes(host);
}
@bindThis
public concatNoteContentsForKeyWordCheck(content: {
cw?: string | null;