Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc committed Apr 29, 2024
1 parent 38edcc9 commit c7baf95
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ import { ProgressStatus, ProgressStep } from "../api/types";
import { CreateProgramState, useCreateProgram } from "./useCreateProgram";
import ReactTooltip from "react-tooltip";
import { CHAINS } from "../api/utils";
import { ChainId } from "common/src/chain-ids";
import { AlloError } from "common";
import { AlloError, ChainId} from "common";

type FormData = {
name: string;
Expand Down Expand Up @@ -253,7 +252,7 @@ export default function CreateProgram() {
</label>

<div className="opacity-50 flex mt-1 py-[6px] shadow-sm px-3 border rounded-md border-grey-100">
{CHAINS[chain.id as ChainId] ? (
{CHAINS[chain.id as ChainId] ? (
<>
<img
src={CHAINS[chain.id as ChainId]?.logo}
Expand Down

0 comments on commit c7baf95

Please sign in to comment.