diff --git a/src/app/App.tsx b/src/app/App.tsx
index c3b0c3bb..1aea1271 100644
--- a/src/app/App.tsx
+++ b/src/app/App.tsx
@@ -8932,9 +8932,7 @@ export function App({ store, initialStatusMessage }: AppProps) {
{links.length === 0 ? (
- {sourceEntity.kind === "triggerVolume"
- ? "No sequence links authored for this Trigger Volume yet."
- : "No sequence links authored for this Interactable yet."}
+ {`No sequence links authored for this ${getInteractionSourceEntityLabel(sourceEntity)} yet.`}
) : (
@@ -9226,7 +9224,7 @@ export function App({ store, initialStatusMessage }: AppProps) {
Run Sequence links can reference any authored sequence,
- but only its start effects fire from interactions.
+ and interactions fire that sequence from the start.
);