Skip to content

Commit

Permalink
remove from demo app some smart accounts
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanyapotti committed Sep 24, 2024
1 parent 976d4be commit 31b1421
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions demo/vue-app-new/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,14 +133,12 @@ export const defaultLoginMethod: Record<LOGIN_PROVIDER_TYPE, FormConfigSettings>
{} as Record<LOGIN_PROVIDER_TYPE, FormConfigSettings>
);

export type SmartAccountType = "safe" | "biconomy" | "kernel" | "light" | "simple" | "trust";
export type SmartAccountType = "safe" | "biconomy" | "kernel" | "trust";

export const SmartAccountOptions: { name: string; value: SmartAccountType }[] = [
{ name: "Safe", value: "safe" },
{ name: "Biconomy", value: "biconomy" },
{ name: "Kernel", value: "kernel" },
{ name: "Light", value: "light" },
{ name: "Simple", value: "simple" },
{ name: "Trust", value: "trust" },
];

Expand Down

0 comments on commit 31b1421

Please sign in to comment.