Skip to content

Commit

Permalink
fix: order of connecton modes
Browse files Browse the repository at this point in the history
  • Loading branch information
saikumarrs committed Oct 24, 2024
1 parent b59c625 commit d1077d2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/configurations/destinations/sprig/db-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
],
"excludeKeys": [],
"supportedConnectionModes": {
"android": ["cloud", "device"],
"ios": ["cloud", "device"],
"android": ["device", "cloud"],
"ios": ["device", "cloud"],
"web": ["device", "cloud"],
"unity": ["cloud"],
"amp": ["cloud"],
Expand Down
4 changes: 2 additions & 2 deletions src/configurations/destinations/sprig/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
"properties": {
"android": {
"type": "string",
"enum": ["cloud", "device"]
"enum": ["device", "cloud"]
},
"ios": {
"type": "string",
"enum": ["cloud", "device"]
"enum": ["device", "cloud"]
},
"web": {
"type": "string",
Expand Down
4 changes: 0 additions & 4 deletions src/configurations/destinations/sprig/ui-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,6 @@
"configKey": "connectionModes.webDevice",
"value": true
},
{
"configKey": "connectionModes.mobileDevice",
"value": true
},
{
"configKey": "connectionMode.android",
"value": "device"
Expand Down

0 comments on commit d1077d2

Please sign in to comment.