From 1c6cfefbbfa2a32bb624348d1feaa60e94e43855 Mon Sep 17 00:00:00 2001 From: "@gapmiss" Date: Sat, 11 Jul 2026 16:16:37 -0500 Subject: [PATCH] fix: add is-loading class to Notice --- src/main.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.ts b/src/main.ts index 4a33a4a..66f9400 100644 --- a/src/main.ts +++ b/src/main.ts @@ -64,6 +64,7 @@ export default class SubstackClipperPlugin extends Plugin { private async clipPost(url: string, openAfterClip: boolean): Promise { const notice = new Notice('Saving...', 0); + notice.containerEl.addClass("is-loading"); try { const { username, slug, domain } = parseUrl(url);