Skip to content

Commit

Permalink
chore: no dev
Browse files Browse the repository at this point in the history
  • Loading branch information
peterpeterparker committed Oct 23, 2024
1 parent 584e99b commit 9ab0f20
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions cli/src/modules/internet-identity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const INTERNET_IDENTITY: ModuleDescription = {
};

class InternetIdentityModule extends Module {
override async install({state, ...rest}: ModuleInstallParams): Promise<void> {
override async install(params: ModuleInstallParams): Promise<void> {
const initArgs: InternetIdentityInit = {
archive_config: toNullable(),
canister_creation_cycles_cost: toNullable(),
Expand All @@ -33,9 +33,8 @@ class InternetIdentityModule extends Module {
const arg = IDL.encode(init({IDL}), [[initArgs]]);

await super.install({
state,
arg,
...rest
...params
});
}
}
Expand Down

0 comments on commit 9ab0f20

Please sign in to comment.