Skip to content

Commit

Permalink
chore: remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
nhedger committed Mar 11, 2023
1 parent cc9af45 commit e6556b4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/providers/inertiaComponentAutocompletion.provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ export class InertiaComponentAutocompletionProvider
console.log(files);
return files.map((uri) => {
const base = Uri.joinPath(workspaceURI, unglob(pagesGlob));
console.log(pathDiff(base, uri));
return new CompletionItem(
{
label: pathDiff(base, uri)
Expand Down
1 change: 0 additions & 1 deletion src/providers/inertiaComponentLink.provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ export class InertiaComponentLinkProvider implements DocumentLinkProvider {

const file = files.find((file: Uri) => {
const normalized = this.normalizeComponentPath(path);
console.log(normalized);
return file.path.startsWith(
Uri.joinPath(workspaceURI, unglob(pages), normalized)
.path
Expand Down

0 comments on commit e6556b4

Please sign in to comment.