Skip to content

Commit

Permalink
fix: style prop no longer passed to React.Fragment (#601)
Browse files Browse the repository at this point in the history
  • Loading branch information
CTNicholas authored Oct 4, 2022
1 parent 88709f7 commit 05766bb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion sandpack-react/src/presets/Sandpack.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,11 @@ export const Sandpack: SandpackInternal = (props) => {
height: props.options?.editorHeight, // use the original editor height
};

const rightColumnProps = React.useMemo(
() => (hasRightColumn ? { style: rightColumnStyle } : {}),
[hasRightColumn]
);

/* eslint-disable-next-line @typescript-eslint/no-non-null-assertion */
const templateFiles = SANDBOX_TEMPLATES[props.template!] ?? {};
const mode = "mode" in templateFiles ? templateFiles.mode : "preview";
Expand Down Expand Up @@ -128,7 +133,7 @@ export const Sandpack: SandpackInternal = (props) => {
/>

{/* @ts-ignore */}
<RightColumn style={rightColumnStyle}>
<RightColumn {...rightColumnProps}>
{mode === "preview" && (
<SandpackPreview
actionsChildren={actionsChildren}
Expand Down

0 comments on commit 05766bb

Please sign in to comment.