Remove [next] from template actions

This commit is contained in:
2026-04-27 09:14:44 +00:00
parent 9fa87d01b3
commit 1bbc21c742

View File

@@ -217,14 +217,10 @@ export function TemplateListScreen(): React.ReactElement {
action.roles.length,
index
);
const sourceSuffix = action.source === 'next'
? ' [next]'
: action.source === 'starting+next'
? ' [start+next]'
: '';
return {
key: action.actionIdentifier,
label: `${formatted.label}${sourceSuffix}`,
label: `${formatted.label}`,
description: formatted.description,
value: action,
hidden: !formatted.isValid,