summaryrefslogtreecommitdiff
path: root/examples/ssr/src/pages/index.astro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/ssr/src/pages/index.astro')
-rw-r--r--examples/ssr/src/pages/index.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/ssr/src/pages/index.astro b/examples/ssr/src/pages/index.astro
index ea2c6c2f6..8eb04ffa6 100644
--- a/examples/ssr/src/pages/index.astro
+++ b/examples/ssr/src/pages/index.astro
@@ -5,7 +5,7 @@ import ProductListing from '../components/ProductListing.astro';
import { getProducts } from '../api';
import '../styles/common.css';
-const products = await getProducts();
+const products = await getProducts(Astro.request);
---
<html>
<head>