Update PromptEntry.tsx

This commit is contained in:
Seth Forsgren 2022-12-15 00:06:30 -08:00
parent b0458fbbfe
commit af7ed7319d
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ export default function PromptEntry({
} else {
return (
<div className="tooltip text-left" data-tip="🚀 Jump to upcoming prompt?" onClick={() => { jumpToPrompt(prompt, inferenceResults, setPaused, nowPlayingResult) }} >
<p className={className}>UP NEXT: {prompt}</p>
<p className={className}>{prompt}</p>
</div>
)
}