Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { usePoolCreationStore } from "~~/hooks/v3";
import { type SupportedPoolTypes, poolTypeMap } from "~~/utils/constants";

export function ChooseType() {
const poolTypes = Object.keys(poolTypeMap).slice(0, 3) as SupportedPoolTypes[];
const poolTypes = Object.keys(poolTypeMap).slice(0, 4) as SupportedPoolTypes[];
const { poolType } = usePoolCreationStore();

console.log(poolTypeMap);
Expand All @@ -13,7 +13,7 @@ export function ChooseType() {
<>
<div className="flex flex-col justify-center h-full gap-10 mt-10">
<div className="text-xl">Choose a pool type:</div>
<div className="grid grid-cols-3 gap-4 ">
<div className="grid grid-cols-2 gap-4 ">
{poolTypes.map((type: SupportedPoolTypes) => (
<PoolTypeButton key={type} selectedPoolType={type} />
))}
Expand Down