Skip to content

Commit 2f66208

Browse files
committed
remove target=_blank
1 parent 30ef64c commit 2f66208

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/SupportedDevices.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88

99
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 py-10 px-10 lg:px-28">
1010
{#each devices as device}
11-
<a href="{device.link}" target="_blank">
11+
<a href="{device.link}">
1212
<div class="border-solid border-white hover:border-color9 border-2 p-4 bg-transparent hover:bg-color9 transition transform active:scale-95">
1313
<h4>{device.codename ?? "error codename"}</h4>
1414
<p>{device.model ?? "error model"}</p>
1515
</div>
1616
</a>
1717
{/each}
1818
</div>
19-
</div>
19+
</div>

0 commit comments

Comments
 (0)