diff --git a/examples/browser-create-react-app/public/manifest.json b/examples/browser-create-react-app/public/manifest.json index 1f2f141faf..5845b822ec 100755 --- a/examples/browser-create-react-app/public/manifest.json +++ b/examples/browser-create-react-app/public/manifest.json @@ -1,6 +1,6 @@ { - "short_name": "React App", - "name": "Create React App Sample", + "short_name": "IPFS React App", + "name": "IPFS Create React App Example", "icons": [ { "src": "favicon.ico", diff --git a/examples/browser-create-react-app/src/App.js b/examples/browser-create-react-app/src/App.js index 4503df4cd1..8d8a20d483 100755 --- a/examples/browser-create-react-app/src/App.js +++ b/examples/browser-create-react-app/src/App.js @@ -4,15 +4,15 @@ import useIpfs from './hooks/use-ipfs.js' import logo from './ipfs-logo.svg' const App = () => { - const { ipfs, ipfsInitError } = useIpfsFactory({commands: ['id']}) + const { ipfs, ipfsInitError } = useIpfsFactory({ commands: ['id'] }) const id = useIpfs(ipfs, 'id') return (