Skip to content

Commit ab45dc3

Browse files
authoredMay 27, 2024··
squelch warnings (#620)
1 parent 9bba03a commit ab45dc3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 

‎src/routes/tutorial/[slug]/filetree/Filetree.svelte

+1
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@
138138
}
139139
</script>
140140

141+
<!-- svelte-ignore a11y-no-noninteractive-element-interactions -->
141142
<ul
142143
class="filetree"
143144
class:mobile

‎src/routes/tutorial/[slug]/filetree/Item.svelte

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
}
4040
</script>
4141

42+
<!-- svelte-ignore a11y-no-noninteractive-element-interactions -->
4243
<li
4344
aria-current={selected ? 'true' : undefined}
4445
style="--depth: {depth}; --icon: url('{icon}');"
@@ -208,4 +209,4 @@
208209
:global(.mobile-filetree) [aria-current='true']::after {
209210
display: none;
210211
}
211-
</style>
212+
</style>

0 commit comments

Comments
 (0)
Please sign in to comment.