chore: Remove "Remote Development" mode from the example app
MR: !335 (merged)
Description
In the Example App, we have a Type
dropdown to select between Remote Development
and Client only
.
We want to remove the Remote Development
option, which means we can also remove this Type
dropdown altogether and a bunch more related code in the example app.
Implementation details
- In this place, where we have
ExampleConfigClientOnly
andExampleConfigRemote
, we want to removeExampleConfigRemote
and renameExampleConfigClientOnly
to simplyExampleConfig
. - We'll want to get rid of the
obj.type
reference here since we don't need configtype
anymore (1). - In the components we can remove the
<div
block that creates theType
field (1) and theconfig-form-remote
component altogether (1).
Edited by Victoria Owusu