Skip to content

Commit

Permalink
fix: use lowercase restakes image name
Browse files Browse the repository at this point in the history
  • Loading branch information
glpecile committed Aug 20, 2024
1 parent b0f74c9 commit a4f9dfe
Show file tree
Hide file tree
Showing 15 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion explorer/lib/explorer_web/live/pages/restake/index.ex
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ defmodule ExplorerWeb.Restake.Index do
inner_class="font-semibold inline-flex flex-col text-base gap-y-2 text-muted-foreground [&>div>p]:text-foreground [&>p]:text-foreground [&>a]:text-foreground [&>p]:break-all [&>*]:font-normal [&>div]:flex [&>div]:flex-col [&>div]:lg:flex-row [&>div>h3]:basis-1/4"
>
<img
src={~s"/images/restakes/#{@restake.symbol}.webp"}
src={~s"/images/restakes/#{@restake.symbol |> String.downcase()}.webp"}
alt={@restake.name}
class="py-2 text-xs truncate text-center self-start size-28 object-scale-down rounded-xl"
/>
Expand Down
2 changes: 1 addition & 1 deletion explorer/lib/explorer_web/live/pages/restakes/index.ex
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ defmodule ExplorerWeb.Restakes.Index do
class="flex gap-x-2 items-center group-hover:text-foreground/80"
>
<img
src={~s"/images/restakes/#{asset.symbol}.webp"}
src={~s"/images/restakes/#{asset.symbol |> String.downcase()}.webp"}
alt={asset.name}
class="size-5 rounded-full object-scale-down text-xs truncate text-center"
/>
Expand Down
Binary file added explorer/priv/static/images/restakes/ankreth.webp
Binary file not shown.
Binary file added explorer/priv/static/images/restakes/cbeth.webp
Binary file not shown.
Binary file added explorer/priv/static/images/restakes/eigen.webp
Binary file not shown.
Binary file added explorer/priv/static/images/restakes/eo.webp
Binary file not shown.
Binary file added explorer/priv/static/images/restakes/eth.webp
Binary file not shown.
Binary file added explorer/priv/static/images/restakes/ethx.webp
Binary file not shown.
Binary file added explorer/priv/static/images/restakes/lseth.webp
Binary file not shown.
Binary file added explorer/priv/static/images/restakes/meth.webp
Binary file not shown.
Binary file added explorer/priv/static/images/restakes/oseth.webp
Binary file not shown.
Binary file added explorer/priv/static/images/restakes/realt.webp
Binary file not shown.
Binary file added explorer/priv/static/images/restakes/reth.webp
Binary file not shown.
Binary file added explorer/priv/static/images/restakes/steth.webp
Binary file not shown.
Binary file added explorer/priv/static/images/restakes/weth.webp
Binary file not shown.

0 comments on commit a4f9dfe

Please sign in to comment.