We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0534fa commit 8fc2ffbCopy full SHA for 8fc2ffb
src/layouts/WikiArticle.astro
@@ -188,7 +188,6 @@ export interface Props {
188
`article ${location.hash}`
189
);
190
if (target) {
191
- console.log("SCROLLING TO TARGET ON PAGE LOAD");
192
target.scrollIntoView();
193
}
194
</script>
src/util/vscode.ts
@@ -16,7 +16,6 @@ export const getExtensionInstalls = async (
16
if (match === null) {
17
throw new Error("Failed to parse out install count");
18
19
- console.log(match)
20
return Number(match[1]);
21
} catch (e) {
22
throw new Error("Failed to get extension information", { cause: e });
0 commit comments