Skip to content

Commit e20c419

Browse files
committed
use correct crypto space id
1 parent 564882f commit e20c419

File tree

13 files changed

+27
-21
lines changed

13 files changed

+27
-21
lines changed

.changeset/angry-trains-count.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"create-hypergraph": patch
3+
---
4+
5+
use correct crypto space id
6+

apps/template-nextjs/app/explore-public-knowledge/assets/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { Asset } from '../../schema';
66
export default function ExploreAssetMarketPage() {
77
const { data: assets, isPending } = useQuery(Asset, {
88
mode: 'public',
9-
space: 'b2565802-3118-47be-91f2-e59170735bac',
9+
space: '3f32353d-3b27-4a13-b71a-746f06e1f7db',
1010
first: 100,
1111
});
1212

apps/template-nextjs/app/explore-public-knowledge/dapps/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { Dapp } from '../../schema';
77
export default function ExploreDappsPage() {
88
const { data: dapps, isPending } = useQuery(Dapp, {
99
mode: 'public',
10-
space: 'b2565802-3118-47be-91f2-e59170735bac',
10+
space: '3f32353d-3b27-4a13-b71a-746f06e1f7db',
1111
first: 100,
1212
include: { avatar: {} },
1313
});

apps/template-nextjs/app/explore-public-knowledge/investment-rounds/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { InvestmentRound } from '../../schema';
66
export default function ExploreInvestmentRoundsPage() {
77
const { data: investmentRounds, isPending } = useQuery(InvestmentRound, {
88
mode: 'public',
9-
space: 'b2565802-3118-47be-91f2-e59170735bac',
9+
space: '3f32353d-3b27-4a13-b71a-746f06e1f7db',
1010
first: 100,
1111
include: {
1212
investors: {},

apps/template-nextjs/app/explore-public-knowledge/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default function ExplorePublicKnowledgeLayout({ children }: { children: R
1414
</span>{' '}
1515
with the ID{' '}
1616
<span className="inline-flex items-center rounded-full border bg-accent/60 text-accent-foreground px-2 py-0.5 text-xs font-mono align-middle">
17-
b2565802-3118-47be-91f2-e59170735bac
17+
3f32353d-3b27-4a13-b71a-746f06e1f7db
1818
</span>
1919
. No authentication is required.
2020
</p>

apps/template-nextjs/app/explore-public-knowledge/projects/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default function ExploreProjectsPage() {
1010

1111
const { data: projects, isPending } = useQuery(Project, {
1212
mode: 'public',
13-
space: 'b2565802-3118-47be-91f2-e59170735bac',
13+
space: '3f32353d-3b27-4a13-b71a-746f06e1f7db',
1414
first: 100,
1515
include: { avatar: {} },
1616
filter: {

apps/template-vite-react/src/routes/explore-public-knowledge.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ExploreTabs } from '@/components/explore-tabs';
2-
import { Outlet, createFileRoute } from '@tanstack/react-router';
2+
import { createFileRoute, Outlet } from '@tanstack/react-router';
33

44
export const Route = createFileRoute('/explore-public-knowledge')({
55
component: ExploreLayout,
@@ -19,7 +19,7 @@ function ExploreLayout() {
1919
</span>{' '}
2020
with the ID{' '}
2121
<span className="inline-flex items-center rounded-full border bg-accent/60 text-accent-foreground px-2 py-0.5 text-xs font-mono align-middle">
22-
b2565802-3118-47be-91f2-e59170735bac
22+
3f32353d-3b27-4a13-b71a-746f06e1f7db
2323
</span>
2424
. No authentication is required.
2525
</p>

apps/template-vite-react/src/routes/explore-public-knowledge/assets.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const Route = createFileRoute('/explore-public-knowledge/assets')({
99
function AssetMarket() {
1010
const { data: assets, isPending } = useQuery(Asset, {
1111
mode: 'public',
12-
space: 'b2565802-3118-47be-91f2-e59170735bac',
12+
space: '3f32353d-3b27-4a13-b71a-746f06e1f7db',
1313
first: 100,
1414
});
1515

apps/template-vite-react/src/routes/explore-public-knowledge/dapps.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const Route = createFileRoute('/explore-public-knowledge/dapps')({
1010
function Dapps() {
1111
const { data: dapps, isPending } = useQuery(Dapp, {
1212
mode: 'public',
13-
space: 'b2565802-3118-47be-91f2-e59170735bac',
13+
space: '3f32353d-3b27-4a13-b71a-746f06e1f7db',
1414
first: 100,
1515
include: { avatar: {} },
1616
});

apps/template-vite-react/src/routes/explore-public-knowledge/investment-rounds.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const Route = createFileRoute('/explore-public-knowledge/investment-round
99
function InvestmentRounds() {
1010
const { data: investmentRounds, isPending } = useQuery(InvestmentRound, {
1111
mode: 'public',
12-
space: 'b2565802-3118-47be-91f2-e59170735bac',
12+
space: '3f32353d-3b27-4a13-b71a-746f06e1f7db',
1313
first: 100,
1414
include: {
1515
investors: {},

0 commit comments

Comments
 (0)