Skip to content

Commit

Permalink
Merge pull request #19 from NordicPlayground/fix/packet-type
Browse files Browse the repository at this point in the history
Remove packet type setting in receiver control view
  • Loading branch information
chunfantasy authored Dec 6, 2019
2 parents b2cb01b + c3a25bc commit 49edd5e
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions lib/components/AppSidePanelView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,16 @@ const AppSidePanelView = ({ selectedTestMode }) => (
<RunTestView />
<ToggleTestModeView />
<ChannelView />
<PacketView />
<OtherSettingsView />
<TimeoutView />
{ selectedTestMode === DTM_TEST_MODE_BUTTON.transmitter && <TransmitSetupView /> }
{ selectedTestMode === DTM_TEST_MODE_BUTTON.transmitter
&& (
<>
<PacketView />
<TransmitSetupView />
</>
)
}
</>
);

Expand Down

0 comments on commit 49edd5e

Please sign in to comment.