diff --git a/src/Popup/Pages/WebRtcPage/index.tsx b/src/Popup/Pages/WebRtcPage/index.tsx index dad4d1e..27eb121 100644 --- a/src/Popup/Pages/WebRtcPage/index.tsx +++ b/src/Popup/Pages/WebRtcPage/index.tsx @@ -27,16 +27,7 @@ const WebRtcPage = ({ tab }: SystemPageProps) => { value={'default'} name={'Default'} description={ - 'Same as above, except allow WebRTC traffic through the default private' - } - webRtcPolicy={webRtcPolicy} - onChange={changeRadioValue} - /> - { value={'default_public_and_private_interfaces'} name={'Default Public And Private Interfaces'} description={ - 'Same as above, except allow WebRTC traffic through the default private' + 'Will only use interface connecting to the public Internet, but may connect using private IP.' } webRtcPolicy={webRtcPolicy} onChange={changeRadioValue} @@ -54,7 +45,16 @@ const WebRtcPage = ({ tab }: SystemPageProps) => { value={'default_public_interface_only'} name={'Default Public Interface Only'} description={ - 'Same as above, except allow WebRTC traffic through the default private' + 'Will only use interface connecting to the public Internet, and will not connect using private IP.' + } + webRtcPolicy={webRtcPolicy} + onChange={changeRadioValue} + /> +