Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apps/create-hypergraph/template-vite-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
},
"dependencies": {
"@graphprotocol/grc-20": "^0.21.6",
"@graphprotocol/hypergraph": "0.0.14",
"@graphprotocol/hypergraph-react": "0.0.14",
"@graphprotocol/typesync": "^0.0.3",
"@graphprotocol/hypergraph": "0.1.0",
"@graphprotocol/hypergraph-react": "0.1.0",
"@graphprotocol/typesync": "^0.1.0",
"@radix-ui/react-navigation-menu": "^1.2.13",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.7",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export function Navbar() {
storage: localStorage,
connectUrl: 'https://hypergraph-connect.vercel.app/',
successUrl: `${window.location.origin}/authenticate-success`,
appId: '93bb8907-085a-4a0e-83dd-62b0dc98e793',
redirectFn: (url: URL) => {
window.location.href = url.toString();
},
Expand Down
2 changes: 1 addition & 1 deletion apps/create-hypergraph/template-vite-react/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if (rootElement && !rootElement.innerHTML) {
const root = ReactDOM.createRoot(rootElement);
root.render(
// <React.StrictMode>
<HypergraphAppProvider mapping={mapping}>
<HypergraphAppProvider mapping={mapping} appId="93bb8907-085a-4a0e-83dd-62b0dc98e793">
<RouterProvider router={router} />
</HypergraphAppProvider>,
// </React.StrictMode>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ function Index() {
storage: localStorage,
connectUrl: 'https://hypergraph-connect.vercel.app/',
successUrl: `${window.location.origin}/authenticate-success`,
appId: '93bb8907-085a-4a0e-83dd-62b0dc98e793',
redirectFn: (url: URL) => {
window.location.href = url.toString();
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ function Login() {
// connectUrl: 'http://localhost:5180',
connectUrl: 'https://hypergraph-connect.vercel.app/',
successUrl: `${window.location.origin}/authenticate-success`,
// hardcoded appId for testing
appId: '93bb8907-085a-4a0e-83dd-62b0dc98e793',
redirectFn: (url: URL) => {
window.location.href = url.toString();
},
Expand Down
46 changes: 33 additions & 13 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading