@cuemath/leap 2.9.1-j1 → 2.9.1-j2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -502,7 +502,7 @@ declare interface IAccountSelectorViewProps {
|
|
502
502
|
userAccounts: {
|
503
503
|
id: string;
|
504
504
|
username: string;
|
505
|
-
user_avatar
|
505
|
+
user_avatar?: IAvatarLayer[];
|
506
506
|
}[];
|
507
507
|
onSelect: (accountId: string) => void;
|
508
508
|
onAddNew: () => void;
|
@@ -929,7 +929,6 @@ declare interface IClaimUserAccountProps {
|
|
929
929
|
onCreateNewAccount: () => void;
|
930
930
|
userAccounts: TUserAccount[];
|
931
931
|
isCreatingAccount: boolean;
|
932
|
-
isSelectingAccount: boolean;
|
933
932
|
isLoading: boolean;
|
934
933
|
}
|
935
934
|
|