diff --git a/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/nft/launch/launch-nft.tsx b/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/nft/launch/launch-nft.tsx index a8876f83373..cf2ef98a36e 100644 --- a/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/nft/launch/launch-nft.tsx +++ b/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/nft/launch/launch-nft.tsx @@ -155,10 +155,10 @@ export function LaunchNFT(props: { return shouldDeployERC721 ? "erc721" : "erc1155"; }, [formValues.nfts]); - const canEnableGasless = - props.teamPlan !== "free" && activeWallet?.id === "inApp"; + // TODO: enable later when bundler changes are done + const canEnableGasless = false; // props.teamPlan !== "free" && activeWallet?.id === "inApp"; const [isGasless, setIsGasless] = useState(canEnableGasless); - const showGaslessSection = activeWallet?.id === "inApp"; + const showGaslessSection = false; // activeWallet?.id === "inApp"; const contractLink = contractAddressRef.current ? `/team/${props.teamSlug}/${props.projectSlug}/contract/${formValues.collectionInfo.chain}/${contractAddressRef.current}` diff --git a/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/token/launch/launch-token.tsx b/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/token/launch/launch-token.tsx index 535af3782ec..c3c552351ed 100644 --- a/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/token/launch/launch-token.tsx +++ b/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/token/launch/launch-token.tsx @@ -64,10 +64,10 @@ export function LaunchTokenStatus(props: { const activeWallet = useActiveWallet(); const walletRequiresApproval = activeWallet?.id !== "inApp"; - const canEnableGasless = - props.teamPlan !== "free" && activeWallet?.id === "inApp"; + // TODO: enable later when bundler changes are done + const canEnableGasless = false; //props.teamPlan !== "free" && activeWallet?.id === "inApp"; const [isGasless, setIsGasless] = useState(canEnableGasless); - const showGaslessSection = activeWallet?.id === "inApp"; + const showGaslessSection = false; // activeWallet?.id === "inApp"; const { idToChain } = useAllChainsData(); const chainMetadata = idToChain.get(Number(formValues.chain));