Skip to content

Commit

Permalink
Fix import of commonjs
Browse files Browse the repository at this point in the history
  • Loading branch information
vaadin committed Jun 12, 2023
1 parent 67067fd commit 054e29d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/vcf-anchor-nav.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { html, PolymerElement } from '@polymer/polymer/polymer-element';
import { ThemableMixin } from '@vaadin/vaadin-themable-mixin';
import { ElementMixin } from '@vaadin/component-base/src/element-mixin';
import { smoothScrollPolyfill, stickyPolyfill } from './common-js-modules.esm';
import { smoothScrollPolyfill, stickyPolyfill } from '../lib/common-js-modules.esm';
import { ResizeObserver } from '@juggle/resize-observer';
import '@vaadin/tabs/vaadin-tabs';
import '@vaadin/tabs/vaadin-tab';
Expand Down Expand Up @@ -243,8 +243,6 @@ export class AnchorNavElement extends ElementMixin(ThemableMixin(PolymerElement)

ready() {
super.ready();
// eslint-disable-next-line no-console
console.log('-----==');
this._verticalTabs = false;
// Add polyfills
smoothScrollPolyfill();
Expand Down

0 comments on commit 054e29d

Please sign in to comment.