Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
SyLi9527 committed May 7, 2023
1 parent 2b94d3a commit f2c3185
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Molstar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ const Molstar = props => {


useEffect(() => {
async() => await(loadStructure(pdbId, url, file, plugin.current));
(async() => {
await loadStructure(pdbId, url, file, plugin.current);
})();
}, [pdbId, url, file])


Expand Down

0 comments on commit f2c3185

Please sign in to comment.