diff --git a/strr-web/pages/account-select.vue b/strr-web/pages/account-select.vue index c75f87e2..e7bb0691 100644 --- a/strr-web/pages/account-select.vue +++ b/strr-web/pages/account-select.vue @@ -32,8 +32,8 @@ const query = useRoute().query; let userAccounts = activeUserAccounts; if ('test' in query && query.test === "true") { - const testData: AccountI = testAccounts as unknown as AccountI; - userAccounts = [ testData ]; + const testData: AccountI[] = testAccounts as unknown as AccountI[]; + userAccounts = testData; } diff --git a/strr-web/pages/test-accounts.json b/strr-web/pages/test-accounts.json index 436a9e34..de7d533e 100644 --- a/strr-web/pages/test-accounts.json +++ b/strr-web/pages/test-accounts.json @@ -1,27 +1,56 @@ -{ - "accessType": "REGULAR", - "branchName": "", - "businessName": "PPR Dev JR 2", - "businessSize": "2-5", - "businessType": "REALA", - "created": "2022-01-06T00:14:08+00:00", - "createdBy": "BCREGTEST HARRIETT FORTY", - "hasApiAccess": false, - "id": 2869, - "isBusinessAccount": true, - "mailingAddress": { - "city": "Lake Country", - "country": "CA", - "postalCode": "V4V 1V7", - "region": "BC", - "street": "9874 Pollard Rd", - "streetAdditional": "" +[ + { + "accessType": "REGULAR", + "branchName": "", + "businessName": "PPR Dev JR 1", + "businessSize": "2-5", + "businessType": "REALA", + "created": "2022-01-06T00:14:08+00:00", + "createdBy": "BCREGTEST HARRIETT FORTY", + "hasApiAccess": false, + "id": 2869, + "isBusinessAccount": true, + "mailingAddress": { + "city": "Lake Country", + "country": "CA", + "postalCode": "V4V 1V7", + "region": "BC", + "street": "9874 Pollard Rd", + "streetAdditional": "" + }, + "modified": "2022-01-06T00:14:08+00:00", + "name": "PPR Dev JR 2", + "orgStatus": "ACTIVE", + "orgType": "PREMIUM", + "statusCode": "ACTIVE", + "uuid": "e3d5c9da-4853-4e1d-bef9-0b765df3c523", + "label": "PPR Dev JR 2" }, - "modified": "2022-01-06T00:14:08+00:00", - "name": "PPR Dev JR 2", - "orgStatus": "ACTIVE", - "orgType": "PREMIUM", - "statusCode": "ACTIVE", - "uuid": "e3d5c9da-4853-4e1d-bef9-0b765df3c523", - "label": "PPR Dev JR 2" -} \ No newline at end of file + { + "accessType": "REGULAR", + "branchName": "", + "businessName": "PPR Dev JR 1", + "businessSize": "2-5", + "businessType": "REALA", + "created": "2022-01-06T00:14:08+00:00", + "createdBy": "BCREGTEST HARRIETT FORTY", + "hasApiAccess": false, + "id": 2869, + "isBusinessAccount": true, + "mailingAddress": { + "city": "Lake Country", + "country": "CA", + "postalCode": "V4V 1V7", + "region": "BC", + "street": "9874 Pollard Rd", + "streetAdditional": "" + }, + "modified": "2022-01-06T00:14:08+00:00", + "name": "PPR Dev JR 2", + "orgStatus": "ACTIVE", + "orgType": "PREMIUM", + "statusCode": "ACTIVE", + "uuid": "e3d5c9da-4853-4e1d-bef9-0b765df3c523", + "label": "PPR Dev JR 2" + } +] \ No newline at end of file