Skip to content

Commit 002ba60

Browse files
committed
Linting pass
1 parent 8325398 commit 002ba60

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/lib/components/FloatingArrow/FloatingArrow.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@
105105
<path
106106
fill="none"
107107
{stroke}
108-
style:clipPath={`url(#${clipPathId})`}
109-
style:strokeWidth={computedStrokeWidth + (d ? 0 : 1)}
108+
style:clip-path={`url(#${clipPathId})`}
109+
style:stroke-width={computedStrokeWidth + (d ? 0 : 1)}
110110
d={dValue}
111111
/>
112112
{/if}

src/lib/utils.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@ export function roundByDPR(element: Element, value: number) {
1717
return Math.round(value * dpr) / dpr;
1818
}
1919

20-
interface foo {
21-
styles: string;
22-
}
23-
2420
/**
2521
* Converts a JavaScript object representing CSS styles into a string.
2622
*/

0 commit comments

Comments
 (0)