We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0f6bd0 commit c16419cCopy full SHA for c16419c
packages/ui/src/cairo_alpha/App.svelte
@@ -61,7 +61,10 @@
61
let allOpts: { [k in Kind]?: Required<KindedOptions[k]> } = {};
62
let errors: { [k in Kind]?: OptionsErrorMessages } = {};
63
64
- let contract: Contract = new ContractBuilder(initialOpts.name ?? 'MyToken');
+ let contract: Contract = new ContractBuilder(
65
+ initialOpts.name ?? 'MyToken',
66
+ { withComponents: true }
67
+ );
68
69
$: opts = allOpts[tab];
70
0 commit comments