diff --git a/frontend/app/view/waveai/waveai.tsx b/frontend/app/view/waveai/waveai.tsx index a3bc3b2a4..52dcd8e43 100644 --- a/frontend/app/view/waveai/waveai.tsx +++ b/frontend/app/view/waveai/waveai.tsx @@ -252,10 +252,11 @@ export class WaveAiModel implements ViewModel { }); return viewTextChildren; }); - this.endIconButtons = atom((get) => { + this.endIconButtons = atom((_) => { let clearButton: IconButtonDecl = { elemtype: "iconbutton", icon: "delete-left", + title: "Clear Chat History", click: this.clearMessages.bind(this), }; return [clearButton];