Skip to content

Commit

Permalink
fix SEI Mainnet name (#3480)
Browse files Browse the repository at this point in the history
  • Loading branch information
gravityblast authored Jun 3, 2024
1 parent 6abdbb2 commit e158957
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/round-manager/src/features/api/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export const CHAINS: Record<ChainId, Program["chain"]> = {
},
[ChainId.SEI_MAINNET]: {
id: ChainId.SEI_MAINNET,
name: "SEI Devnet",
name: "SEI Mainnet",
logo: "/logos/sei.png",
},
[ChainId.LUKSO]: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { ProgressStatus, ProgressStep } from "../api/types";
import { CreateProgramState, useCreateProgram } from "./useCreateProgram";
import ReactTooltip from "react-tooltip";
import { CHAINS } from "../api/utils";
import { AlloError, ChainId} from "common";
import { AlloError, ChainId } from "common";

type FormData = {
name: string;
Expand Down Expand Up @@ -252,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
Original file line number Diff line number Diff line change
Expand Up @@ -1608,7 +1608,7 @@ function RoundApplicationPeriod(props: {
)
? "bg-grey-50 text-gray-400"
: ""
}
}
${rollingApplicationsEnabled ? "invisible" : ""}
border-0 pt-0 ml-2 pl-0 -mt-2 text-sm`}
defaultValue={`${getLocalDate(
Expand Down

0 comments on commit e158957

Please sign in to comment.