summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/src/runtime/server/hydration.ts3
-rw-r--r--packages/astro/src/runtime/server/render/component.ts5
2 files changed, 5 insertions, 3 deletions
diff --git a/packages/astro/src/runtime/server/hydration.ts b/packages/astro/src/runtime/server/hydration.ts
index 8c5635105..4c8b71ba8 100644
--- a/packages/astro/src/runtime/server/hydration.ts
+++ b/packages/astro/src/runtime/server/hydration.ts
@@ -12,7 +12,7 @@ export interface HydrationMetadata {
directive: string;
value: string;
componentUrl: string;
- componentExport: { value: string; };
+ componentExport: { value: string };
}
type Props = Record<string | number | symbol, any>;
@@ -29,7 +29,6 @@ const transitionDirectivesToCopyOnIsland = Object.freeze([
'data-astro-transition-persist',
]);
-
// Used to extract the directives, aka `client:load` information about a component.
// Finds these special props and removes them from what gets passed into the component.
export function extractDirectives(
diff --git a/packages/astro/src/runtime/server/render/component.ts b/packages/astro/src/runtime/server/render/component.ts
index 91d74e812..002f4ebaf 100644
--- a/packages/astro/src/runtime/server/render/component.ts
+++ b/packages/astro/src/runtime/server/render/component.ts
@@ -92,7 +92,10 @@ async function renderFrameworkComponent(
displayName,
};
- const { hydration, isPage, props, propsWithoutTransitionAttributes } = extractDirectives(_props, clientDirectives);
+ const { hydration, isPage, props, propsWithoutTransitionAttributes } = extractDirectives(
+ _props,
+ clientDirectives
+ );
let html = '';
let attrs: Record<string, string> | undefined = undefined;