@dxos/plugin-space 0.6.11-staging.32b42e4 → 0.6.11-staging.9c4dc38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/browser/index.mjs +1 -2
- package/dist/lib/browser/index.mjs.map +2 -2
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/node/index.cjs +1 -2
- package/dist/lib/node/index.cjs.map +2 -2
- package/dist/lib/node/meta.json +1 -1
- package/dist/types/src/SpacePlugin.d.ts.map +1 -1
- package/package.json +28 -28
- package/src/SpacePlugin.tsx +1 -6
|
@@ -1931,8 +1931,7 @@ var SpacePlugin = ({ firstRun, onFirstRun } = {}) => {
|
|
|
1931
1931
|
],
|
|
1932
1932
|
connector: () => {
|
|
1933
1933
|
const spaces = toSignal((onChange) => client.spaces.subscribe(() => onChange()).unsubscribe, () => client.spaces.get());
|
|
1934
|
-
|
|
1935
|
-
if (!spaces || !isReady) {
|
|
1934
|
+
if (!spaces) {
|
|
1936
1935
|
return;
|
|
1937
1936
|
}
|
|
1938
1937
|
const [spacesOrder] = memoizeQuery(client.spaces.default, Filter.schema(Expando, {
|