Skip to content

Commit

Permalink
fix: remove internal slot prop from extraAttrs
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianCataldo committed Jul 30, 2022
1 parent 23d6614 commit 9069676
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Base/Body.astro
Expand Up @@ -2,7 +2,7 @@
export interface Props extends astroHTML.JSX.HTMLAttributes {}
const props = { ...Astro.props } as Props;
/* ———————————————————————————————————————————— Typeguards + Fallbacks —————— */
const internalProps: string[] = ['class:list'];
const internalProps: string[] = ['class:list', 'slot'];
/* ·········································································· */
const extraAttrs: { [key: string]: string } = {};
Object.entries(props).forEach(([key, val]) => {
Expand Down

0 comments on commit 9069676

Please sign in to comment.