summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@skypack.dev> 2022-10-05 16:37:54 -0400
committerGravatar GitHub <noreply@github.com> 2022-10-05 16:37:54 -0400
commit671fca7dac5847b91c9b3357742cca8a80cccede (patch)
treee2ca23158371b175331f984f2e7398e0710327fa
parentd22d77856bbf26b8cbe2e55355b177cb2a712bd8 (diff)
downloadastro-671fca7dac5847b91c9b3357742cca8a80cccede.tar.gz
astro-671fca7dac5847b91c9b3357742cca8a80cccede.tar.zst
astro-671fca7dac5847b91c9b3357742cca8a80cccede.zip
Remove early return from SSR example (#4993)
-rw-r--r--examples/ssr/src/pages/index.astro2
1 files changed, 0 insertions, 2 deletions
diff --git a/examples/ssr/src/pages/index.astro b/examples/ssr/src/pages/index.astro
index a8f95588b..23a4c2721 100644
--- a/examples/ssr/src/pages/index.astro
+++ b/examples/ssr/src/pages/index.astro
@@ -6,8 +6,6 @@ import { getProducts } from '../api';
import '../styles/common.css';
const products = await getProducts(Astro.request);
-
-return;
---
<html lang="en">