Skip to content

Commit 71bfb18

Browse files
committed
underscore unused args
1 parent afe8c0f commit 71bfb18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/view/components/Variable.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
isAnimated = false;
1313
});
1414
15-
function animateChange(node: HTMLElement, value: unknown) {
15+
function animateChange(_node: HTMLElement, _value: unknown) {
1616
return {
17-
update(value: unknown) {
17+
update(_value: unknown) {
1818
const startAnimation =
1919
Date.now() - lastUpdated > VARIABLE_ANIMATION_THROTTLE;
2020

0 commit comments

Comments
 (0)