Skip to content

Commit d062549

Browse files
committed
rename variable
1 parent 477521a commit d062549

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/navigate.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ export async function navigate(
66
context: vscode.ExtensionContext,
77
route: string,
88
) {
9-
const ok = await sendToFrontendWrapped(Messages.Navigate(route));
10-
if (!ok) {
9+
const didNavigate = await sendToFrontendWrapped(Messages.Navigate(route));
10+
if (!didNavigate) {
1111
vscode.commands.executeCommand("source-academy.show-panel", route);
1212
}
1313
}

0 commit comments

Comments
 (0)