diff --git a/com.streamdock.ai-monitor.sdPlugin/plugin/index.js b/com.streamdock.ai-monitor.sdPlugin/plugin/index.js
index a111226..9999f72 100644
--- a/com.streamdock.ai-monitor.sdPlugin/plugin/index.js
+++ b/com.streamdock.ai-monitor.sdPlugin/plugin/index.js
@@ -93,7 +93,7 @@ function makeSvg(fill, label, blink, breathe) {
var anim = '';
if (blink) anim = '';
else if (breathe) anim = '';
- return '';
+ return '';
}
function setDisplay(ctx, state) {
@@ -109,8 +109,7 @@ function setDisplay(ctx, state) {
var anim = '';
if (d.blink) anim = '';
else if (d.breathe) anim = '';
- svg += '' + anim + '';
- svg += '' + d.title + '';
+ svg += '' + anim + '';
plugin.setImage(ctx, 'data:image/svg+xml;charset=utf-8,' + svg);
}
}