Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion apps/web/test/routines-page.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,10 @@ describe("nextRunLabel", () => {

test("a disabled routine reads as paused, not as a stale countdown", () => {
expect(
nextRunLabel(row({ routine: { ...routine, enabled: false } }), listProps.now),
nextRunLabel(
row({ routine: { ...routine, enabled: false } }),
listProps.now,
),
).toBe("Paused");
});
});
Expand Down
6 changes: 3 additions & 3 deletions packages/plugins-ui/src/plugins-gallery.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,9 @@ export function PluginsGallery({
<div>
<h1 className="text-xl font-extrabold">Plugins</h1>
<p className="mt-1 max-w-[65ch] text-sm text-muted-foreground">
A directory to scan, not tiles to admire — one dense row
per connector, grouped by what it does. Click a row's
name for the full page.
A directory to scan, not tiles to admire — one dense row per
connector, grouped by what it does. Click a row's name for
the full page.
</p>
</div>
<McpPresetCardsSection tenantId={tenantId} query={query} />
Expand Down
Loading