diff options
author | 2022-10-05 16:37:54 -0400 | |
---|---|---|
committer | 2022-10-05 16:37:54 -0400 | |
commit | 671fca7dac5847b91c9b3357742cca8a80cccede (patch) | |
tree | e2ca23158371b175331f984f2e7398e0710327fa | |
parent | d22d77856bbf26b8cbe2e55355b177cb2a712bd8 (diff) | |
download | astro-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.astro | 2 |
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"> |