Remove new-capture follow-up toast
Template tests / tests (pull_request) Has been cancelled

This commit is contained in:
2026-06-13 14:25:40 -05:00
parent e46f01885b
commit 1a0fda71f5
+1 -11
View File
@@ -191,17 +191,7 @@ class StepForgeApp {
const guide = await api.library.create({ title: 'Untitled capture' }); const guide = await api.library.create({ title: 'Untitled capture' });
await this.refreshData(); await this.refreshData();
await this.openGuide(guide.guideId); await this.openGuide(guide.guideId);
const state = await this.armCaptureSession(guide.guideId); await this.armCaptureSession(guide.guideId);
const hotkey = this.state.settings?.capture?.hotkeyCapture;
let how;
if (state.clickCapture) {
how = 'every click will grab a step';
} else if (state.intervalSec > 0) {
how = `a step will be grabbed every ${state.intervalSec}s`;
} else {
how = hotkey ? `press ${hotkey} to grab steps` : 'use Shoot to grab steps';
}
toast(`Click "Start recording" in the red bar when you're ready — ${how}. StepForge tucks away; use the red tray icon to pause or finish.`);
} }
async openExistingWorkspace() { async openExistingWorkspace() {