Skip to content

Commit b236ecc

Browse files
name fix
1 parent 041ce1d commit b236ecc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/app-vscode/src/createScopeVisualizer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type {
55
ScopeProvider,
66
ScopeType,
77
} from "@cursorless/lib-common";
8-
import { isPseudoScope } from "@cursorless/lib-common";
8+
import { isPseudoScopeType } from "@cursorless/lib-common";
99
import type { VscodeScopeVisualizer } from "./ide/vscode/VSCodeScopeVisualizer";
1010
import { createVscodeScopeVisualizer } from "./ide/vscode/VSCodeScopeVisualizer";
1111
import type {
@@ -25,7 +25,7 @@ export function createScopeVisualizer(
2525

2626
return {
2727
start(scopeType: ScopeType, visualizationType: VisualizationType) {
28-
if (isPseudoScope(scopeType)) {
28+
if (isPseudoScopeType(scopeType)) {
2929
throw new Error(
3030
`Can't visualize pseudo scopes like '${scopeType.type}'`,
3131
);

0 commit comments

Comments
 (0)