Skip to content

Commit 3b53ac2

Browse files
committed
fix lint
1 parent f5c25c4 commit 3b53ac2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/nft/launch/launch-nft.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,9 @@ export function LaunchNFT(props: {
156156
}, [formValues.nfts]);
157157

158158
// TODO: enable later when bundler changes are done
159-
const canEnableGasless = false // props.teamPlan !== "free" && activeWallet?.id === "inApp";
159+
const canEnableGasless = false; // props.teamPlan !== "free" && activeWallet?.id === "inApp";
160160
const [isGasless, setIsGasless] = useState(canEnableGasless);
161-
const showGaslessSection = false // activeWallet?.id === "inApp";
161+
const showGaslessSection = false; // activeWallet?.id === "inApp";
162162

163163
const contractLink = contractAddressRef.current
164164
? `/team/${props.teamSlug}/${props.projectSlug}/contract/${formValues.collectionInfo.chain}/${contractAddressRef.current}`

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/token/launch/launch-token.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ export function LaunchTokenStatus(props: {
6565
const walletRequiresApproval = activeWallet?.id !== "inApp";
6666

6767
// TODO: enable later when bundler changes are done
68-
const canEnableGasless = false //props.teamPlan !== "free" && activeWallet?.id === "inApp";
68+
const canEnableGasless = false; //props.teamPlan !== "free" && activeWallet?.id === "inApp";
6969
const [isGasless, setIsGasless] = useState(canEnableGasless);
70-
const showGaslessSection = false // activeWallet?.id === "inApp";
70+
const showGaslessSection = false; // activeWallet?.id === "inApp";
7171
const { idToChain } = useAllChainsData();
7272
const chainMetadata = idToChain.get(Number(formValues.chain));
7373

0 commit comments

Comments
 (0)