Skip to content
Snippets Groups Projects
Commit 90228ad8 authored by Ray Schamp's avatar Ray Schamp Committed by Paul Kaplan
Browse files

Fix loading projects by hash on player example

parent 65626dc7
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ if (process.env.NODE_ENV === 'production' && typeof window === 'object') {
import styles from './player.css';
const Player = ({isPlayerOnly, onSeeInside}) => (
const Player = ({isPlayerOnly, onSeeInside, ...props}) => (
<Box
className={classNames({
[styles.stageOnly]: isPlayerOnly
......@@ -28,6 +28,7 @@ const Player = ({isPlayerOnly, onSeeInside}) => (
<GUI
enableCommunity
isPlayerOnly={isPlayerOnly}
{...props}
/>
</Box>
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment