chore: remove debugger

This commit is contained in:
tzhangchi
2022-12-23 21:41:44 +08:00
parent 7aff0ba7d8
commit a9c0d2c280
@@ -26,7 +26,6 @@ export const useEnsureWorkspace = () => {
meta => meta.id.toString() === router.query.workspaceId meta => meta.id.toString() === router.query.workspaceId
) === -1 ) === -1
) { ) {
debugger;
router.push('/404'); router.push('/404');
return; return;
} }
@@ -36,8 +35,6 @@ export const useEnsureWorkspace = () => {
router.query.workspaceId && router.query.workspaceId &&
router.query.workspaceId !== defaultOutLineWorkspaceId router.query.workspaceId !== defaultOutLineWorkspaceId
) { ) {
debugger;
router.push('/404'); router.push('/404');
return; return;
} }