Skip to content

Commit

Permalink
Merge pull request #4695 from voxel51/merge/release/v0.25.0
Browse files Browse the repository at this point in the history
Merge `release/v0.25.0` to `develop`
  • Loading branch information
benjaminpkane authored Aug 16, 2024
2 parents 6882c7f + 647b875 commit 1824ddb
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
import { SampleWrapper } from "../Sample";
import { Sample3d } from "../Sample3d";
import { GroupSampleWrapper } from "./GroupSampleWrapper";
import { GroupSuspense } from "./GroupSuspense";

const Sample3dWrapper = () => {
const sample = useRecoilValue(fos.pinned3DSample);
Expand Down Expand Up @@ -102,5 +103,9 @@ export default () => {
return <Loading>Pixelating...</Loading>;
}

return <Sample3dWrapper />;
return (
<GroupSuspense>
<Sample3dWrapper />
</GroupSuspense>
);
};

0 comments on commit 1824ddb

Please sign in to comment.