Skip to content

Commit 46af8ce

Browse files
committed
chore: update cloud tutorial
1 parent bfcbbc3 commit 46af8ce

File tree

1 file changed

+2
-2
lines changed
  • packages/docs/pages/docs/tutorial

1 file changed

+2
-2
lines changed

packages/docs/pages/docs/tutorial/cloud.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export default async function Page({
5555
}) {
5656
const { slug } = await params;
5757

58-
const url = `https://composify.cloud/[organization id]/${slug}`;
58+
const url = `https://pages.composify.net/[org public id]/${slug}`;
5959
const res = await fetch(url, {
6060
cache: 'no-store',
6161
});
@@ -83,7 +83,7 @@ import { useLoaderData } from 'react-router';
8383
export async function loader({ params }: LoaderFunctionArgs) {
8484
const slug = params.slug ?? '';
8585

86-
const url = `https://composify.cloud/[organization id]/${slug}`;
86+
const url = `https://pages.composify.net/[org public id]/${slug}`;
8787
const res = await fetch(url, {
8888
cache: 'no-store',
8989
});

0 commit comments

Comments
 (0)