Skip to content

Commit fcf9035

Browse files
committed
fix: footer restakes link
Also removed target attr as it wasn't needed and was showing warnings when compling
1 parent f4a7b04 commit fcf9035

File tree

1 file changed

+2
-6
lines changed
  • explorer/lib/explorer_web/components

1 file changed

+2
-6
lines changed

explorer/lib/explorer_web/components/footer.ex

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ defmodule FooterComponent do
1010
[
1111
{"Batches", "/batches"},
1212
{"Operators", "/operators"},
13-
{"Restake", "/restake"}
13+
{"Restake", "/restakes"}
1414
]},
1515
{"Social",
1616
[
@@ -59,11 +59,7 @@ defmodule FooterComponent do
5959
<div class="flex flex-col items-start gap-2">
6060
<h3 class="text-foreground font-bold text-lg"><%= title %></h3>
6161
<%= for {value, link} <- links do %>
62-
<.link
63-
class="text-md text-foreground/80 hover:underline"
64-
href={link}
65-
_target="blank"
66-
>
62+
<.link class="text-md text-foreground/80 hover:underline" href={link}>
6763
<%= value %>
6864
</.link>
6965
<% end %>

0 commit comments

Comments
 (0)