Skip to content

Commit

Permalink
fix: deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
0x7u committed May 14, 2024
1 parent 148b1ab commit d52f796
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/features/core/components/table.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import Image from "next/image";
import type { PropsWithChildren } from "react";

import { chevron } from "../lib/icons";
Expand Down Expand Up @@ -77,7 +76,7 @@ export const ValidatorLogo = ({
}) => (
<div className="flex items-center justify-start">
{logo ? (
<Image
<img
alt="Validator logo"
className="block rounded-full"
height={height}
Expand Down
3 changes: 1 addition & 2 deletions src/features/staking/components/modals/redelegate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import type { SelectOption } from "@mui/base";
import { Option, Select } from "@mui/base";
import BigNumber from "bignumber.js";
import type { Validator } from "cosmjs-types/cosmos/staking/v1beta1/staking";
import Image from "next/image";
import type { FormEventHandler } from "react";
import { useEffect, useState } from "react";
import { toast } from "react-toastify";
Expand Down Expand Up @@ -60,7 +59,7 @@ const ValidatorOption = ({
};

const SelectArrow = ({ open = false }: { open?: boolean }) => (
<Image
<img
alt="down-arrow"
className={["ml-auto mr-4", open ? "rotate-180" : ""].join(" ")}
height={24}
Expand Down

0 comments on commit d52f796

Please sign in to comment.