diff --git a/src/views/about/about.tsx b/src/views/about/about.tsx index df001d9c..a33ead23 100644 --- a/src/views/about/about.tsx +++ b/src/views/about/about.tsx @@ -96,7 +96,7 @@ const FAQ = () => { Seedit desktop , which automatically runs a full node and lets you create communities with the ease of a reddit-like graphical user interface. You can also open a remote - connection to an RPC node to create communities even on web and on mobile devices. In the near + connection to an RPC node to create communities even on web and on mobile devices. In the near future, we plan to include a public RPC connection turned on by default, so you can create communities on any device without running your own node.


diff --git a/src/views/settings/plebbit-options/plebbit-options.tsx b/src/views/settings/plebbit-options/plebbit-options.tsx index d02eb7e2..1b1e68b4 100644 --- a/src/views/settings/plebbit-options/plebbit-options.tsx +++ b/src/views/settings/plebbit-options/plebbit-options.tsx @@ -13,7 +13,7 @@ interface SettingsProps { maticRpcRef?: RefObject; avaxRpcRef?: RefObject; plebbitRpcRef?: RefObject; - nodeDataPathRef?: RefObject; + plebbitDataPathRef?: RefObject; } const IPFSGatewaysSettings = ({ ipfsGatewayUrlsRef, mediaIpfsGatewayUrlRef }: SettingsProps) => { @@ -129,16 +129,16 @@ const PlebbitRPCSettings = ({ plebbitRpcRef }: SettingsProps) => { ); }; -const NodeDataPathSettings = ({ nodeDataPathRef }: SettingsProps) => { +const PlebbitDataPathSettings = ({ plebbitDataPathRef }: SettingsProps) => { const plebbitRpc = usePlebbitRpcSettings(); const { plebbitRpcSettings } = plebbitRpc || {}; const isConnectedToRpc = plebbitRpc?.state === 'succeeded'; const path = plebbitRpcSettings?.plebbitOptions?.dataPath || ''; return ( -
+
- +
); @@ -158,7 +158,7 @@ const PlebbitOptions = () => { const maticRpcRef = useRef(null); const avaxRpcRef = useRef(null); const plebbitRpcRef = useRef(null); - const nodeDataPathRef = useRef(null); + const plebbitDataPathRef = useRef(null); const handleSave = async () => { const ipfsGatewayUrls = ipfsGatewayUrlsRef.current?.value.split('\n').map((url) => url.trim()); @@ -169,7 +169,7 @@ const PlebbitOptions = () => { const maticRpcUrls = maticRpcRef.current?.value.split('\n').map((url) => url.trim()); const avaxRpcUrls = avaxRpcRef.current?.value.split('\n').map((url) => url.trim()); const plebbitRpcClientsOptions = plebbitRpcRef.current?.value.trim(); - const dataPath = nodeDataPathRef.current?.value.trim(); + const dataPath = plebbitDataPathRef.current?.value.trim(); const chainProviders = { eth: { @@ -234,16 +234,16 @@ const PlebbitOptions = () => {
-
- node rpc +
+ plebbit rpc
- node data path + plebbit data path - +