summaryrefslogtreecommitdiff
path: root/examples/snowpack/src/components/PluginSearchPage.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'examples/snowpack/src/components/PluginSearchPage.jsx')
-rw-r--r--examples/snowpack/src/components/PluginSearchPage.jsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/snowpack/src/components/PluginSearchPage.jsx b/examples/snowpack/src/components/PluginSearchPage.jsx
index 51c7e6b0f..4ed46cb74 100644
--- a/examples/snowpack/src/components/PluginSearchPage.jsx
+++ b/examples/snowpack/src/components/PluginSearchPage.jsx
@@ -117,5 +117,9 @@ function PluginSearchPageLive() {
}
export default function PluginSearchPage(props) {
- return import.meta.env.astro ? <div>Loading...</div> : <PluginSearchPageLive {...props} />
+ return import.meta.env.astro ? (
+ <div>Loading...</div>
+ ) : (
+ <PluginSearchPageLive {...props} />
+ );
}