style: remove unnecessary semicolons after blocks

This commit is contained in:
2026-08-08 15:23:28 +02:00
parent 302e34e4ca
commit 7c082ba696
8 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ export const ensureUnit = function (d) {
// if it ends with a number
if (/\d$/.test(d)) {
d += 'px';
};
}
return d;
};