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 ab700fa commit ded7ebcCopy full SHA for ded7ebc
packages/amplify-cli/src/domain/amplify-usageData/UsageData.ts
@@ -65,7 +65,7 @@ export class UsageData implements IUsageData {
65
processStartTimeStamp: number,
66
): void {
67
this.installationUuid = installationUuid;
68
- const accountBucketId = Number(accountId) / 100;
+ const accountBucketId = Number(accountId.slice(0, -2)) / 100;
69
this.accountId = uuidV5(accountBucketId.toString(), AMPLIFY_CLI_UUID_NAMESPACE);
70
this.projectSettings = projectSettings;
71
this.version = version;
0 commit comments