Skip to content

Commit 9758608

Browse files
committed
remove logs
1 parent 495fd8c commit 9758608

File tree

5 files changed

+4
-10
lines changed

5 files changed

+4
-10
lines changed

apps/dashboard/src/app/(app)/team/[team_slug]/(team)/~/ecosystem/[slug]/(active)/configuration/components/client/auth-options-form.client.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ export function AuthOptionsForm({
230230
<Form {...form}>
231231
<form
232232
onSubmit={form.handleSubmit(onSubmit, (errors) => {
233-
console.log(errors);
233+
console.error(errors);
234234
})}
235235
className="flex flex-col gap-8"
236236
>

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/assets/create/nft/create-nft-page-ui.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,17 +96,17 @@ export function CreateNFTPageUI(props: {
9696
nftData={nftData}
9797
setNFTData={setNFTData}
9898
onNext={() => {
99-
setStep("sales-settings");
99+
setStep(nftCreationPages["sales-settings"]);
100100
}}
101101
onPrev={() => {
102-
setStep("collection-info");
102+
setStep(nftCreationPages["collection-info"]);
103103
}}
104104
client={props.client}
105105
chainId={Number(nftCollectionInfoForm.watch("chain"))}
106106
/>
107107
)}
108108

109-
{step === "sales-settings" && (
109+
{step === nftCreationPages["sales-settings"] && (
110110
<SalesSettings
111111
form={nftSalesSettingsForm}
112112
client={props.client}

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/assets/create/nft/upload-nfts/batch-upload/process-files.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -290,10 +290,6 @@ export async function processBatchUploadFiles(
290290
const parsed = nftWithPriceInputCsvSchema
291291
.passthrough()
292292
.parse(result);
293-
console.log({
294-
parsed,
295-
result,
296-
});
297293

298294
if (parsed) {
299295
validRows.push(parsed);

apps/dashboard/src/app/bridge/constants.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import { setThirdwebDomains } from "thirdweb/utils";
1818

1919
function getBridgeThirdwebClient() {
2020
if (getVercelEnv() !== "production") {
21-
console.log("Setting domains for bridge app", THIRDWEB_BRIDGE_URL);
2221
// if not on production: run this when creating a client to set the domains
2322
setThirdwebDomains({
2423
rpc: THIRDWEB_RPC_DOMAIN,

apps/dashboard/src/components/contract-components/shared/sources-accordion.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export function SourcesAccordion({
1212
sources,
1313
abi,
1414
}: { sources: SourceFile[]; abi?: Abi }) {
15-
console.log({ sources });
1615
return (
1716
<Accordion type="multiple" className="w-full">
1817
{abi && (

0 commit comments

Comments
 (0)