fix: skip some test for outdated ux

This commit is contained in:
DarkSky
2023-01-09 14:08:11 +08:00
parent da983b5006
commit 20cef6e54a
4 changed files with 5 additions and 5 deletions

View File

@@ -18,7 +18,7 @@ const DynamicBlocksuite = ({
const openWorkspace: LoadWorkspaceHandler = async (workspaceId: string) => {
if (workspaceId) {
const dc = await getDataCenter();
return dc.load(workspaceId, { providerId: 'selfhosted' });
return dc.load(workspaceId, { providerId: 'local' });
} else {
return null;
}