From 53f754109bb392b99541d142d698a6c0042ab4a0 Mon Sep 17 00:00:00 2001 From: Delba de Oliveira <32464864+delbaoliveira@users.noreply.github.com> Date: Thu, 16 Nov 2023 15:00:07 +0000 Subject: [PATCH] Fix typo (#451) --- dashboard/final-example/app/lib/data.ts | 4 ++-- dashboard/starter-example/app/lib/data.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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));