diff --git a/dashboard/final-example/app/lib/data.ts b/dashboard/final-example/app/lib/data.ts index 6b052e5..7e0a050 100644 --- a/dashboard/final-example/app/lib/data.ts +++ b/dashboard/final-example/app/lib/data.ts @@ -16,8 +16,8 @@ export async function fetchRevenue() { // This is equivalent to in fetch(..., {cache: 'no-store'}). noStore(); try { - // Artificially delay a reponse for demo purposes. - // Don't do this in real life :) + // Artificially delay a response for demo purposes. + // Don't do this in production :) // console.log('Fetching revenue data...'); // await new Promise((resolve) => setTimeout(resolve, 3000)); diff --git a/dashboard/starter-example/app/lib/data.ts b/dashboard/starter-example/app/lib/data.ts index cf90361..07ffe3a 100644 --- a/dashboard/starter-example/app/lib/data.ts +++ b/dashboard/starter-example/app/lib/data.ts @@ -15,8 +15,8 @@ export async function fetchRevenue() { // This is equivalent to in fetch(..., {cache: 'no-store'}). try { - // Artificially delay a reponse for demo purposes. - // Don't do this in real life :) + // Artificially delay a response for demo purposes. + // Don't do this in production :) // console.log('Fetching revenue data...'); // await new Promise((resolve) => setTimeout(resolve, 3000));