Tools page cards link to the tool detail page, not the program
ProgramCard/ProgramList take an optional linkBase (default /programs); the Tools page passes /tools so a tool tile opens /tools/<name> (its deployment detail), not /programs/<name>.
This commit is contained in:
@@ -14,7 +14,7 @@ export function Tools() {
|
||||
{isLoading ? (
|
||||
<p className="text-[var(--muted)]">Loading...</p>
|
||||
) : programs && programs.length > 0 ? (
|
||||
<ProgramList programs={programs} />
|
||||
<ProgramList programs={programs} linkBase="/tools" />
|
||||
) : (
|
||||
<p className="text-[var(--muted)]">No tools yet.</p>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user