From aeae76ba60251646445a9d0843ba3131b86e2b7f Mon Sep 17 00:00:00 2001 From: Chris Veilleux Date: Fri, 22 Mar 2019 12:22:00 -0500 Subject: [PATCH] device placement should be a string, not an object --- projects/account/src/app/shared/models/device.model.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/account/src/app/shared/models/device.model.ts b/projects/account/src/app/shared/models/device.model.ts index 732e712..3be3631 100644 --- a/projects/account/src/app/shared/models/device.model.ts +++ b/projects/account/src/app/shared/models/device.model.ts @@ -7,7 +7,7 @@ export interface Device { id: string; geography: Geography; name: string; - placement: DeviceAttribute; + placement: string; platform: string; voice: DeviceAttribute; wakeWord: DeviceAttribute;