Skip to content

Commit

Permalink
fix(general,components): correct else statement
Browse files Browse the repository at this point in the history
  • Loading branch information
simonedevit committed Jan 29, 2025
1 parent 01355f6 commit 6fa0235
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"build:local": "webpack --env isLogging=true && bash ../../scripts/copy.sh",
"build": "webpack --env environment=PROD",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:debug": "NODE_OPTIONS=--experimental-vm-modules node --inspect-brk ../../node_modules/.bin/jest",
"test:debug": "NODE_OPTIONS=--experimental-vm-modules node --inspect-brk ../../node_modules/.bin/jest --runInBand",
"release": "npm run build && commit-and-tag-version --commit-all && git push --follow-tags && bash ../../scripts/publish.sh"
},
"keywords": [],
Expand Down
4 changes: 2 additions & 2 deletions packages/library/src/core/Scene.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ export const Scene: React.FC<SceneProps> = ({ children, sceneOptions, onSceneRea
</Bridge>,
rootContainer.current!,
);
} else {
isFirstRender.current = false;
}
} else {
isFirstRender.current = false;
}
});

Expand Down

0 comments on commit 6fa0235

Please sign in to comment.